当前位置:网站首页>Laravel add helper file

Laravel add helper file

2022-06-24 23:12:00 Wang Daochang's way of programming

@top

One 、 Determine file location

If File location in app/Common/Helpers/function.php

Two 、 stay composer.json Add autoload to the load bar of

....
    "autoload": {
    
        "psr-4": {
    
            "App\\": "app/"
        },
        "classmap": [
            "database/seeds",
            "database/factories"
        ],
        "files" : [
            "app/Common/Helpers/function.php"
        ]
    },
....

3、 ... and 、 Execute load

composer dump-autoload 
原网站

版权声明
本文为[Wang Daochang's way of programming]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206241719271614.html