Best Practices for Custom Helpers in Laravel 5

后端 未结 20 1993
暖寄归人
暖寄归人 2020-11-22 06:40

I would like to create helper functions to avoid repeating code between views in Laravel 5:

view.blade.php

Foo Formated text: {{ fo

20条回答
  •  感情败类
    2020-11-22 07:40

    in dir bootstrap\autoload.php

    require __DIR__.'/../vendor/autoload.php';
    require __DIR__.'/../app/Helpers/function.php'; //add
    

    add this file

    app\Helpers\function.php
    

提交回复
热议问题