Answers for "make helper laravel"

PHP
4

laravel add utility class

# How to register utilities class on Laravel 5.8
# File: composer.json
# ref: https://stackoverflow.com/questions/28290332/best-practices-for-custom-helpers-in-laravel-5
"autoload": {
    "classmap": [
        ...
    ],
    "psr-4": {
        "App\\": "app/"
    },
    "files": [
        "app/helpers.php" // <---- ADD THIS
    ]
},
 
 # Then run: `composer dump-autoload`
Posted by: Guest on July-11-2020
-2

laravel helper

use Illuminate\Support\Str;

$length = Str::length('Laravel');

// 7
Posted by: Guest on January-24-2021
-1

add custom helper laravel

"autoload": {
    "classmap": [
        "database/seeds",
        "database/factories"
    ],
    "psr-4": {
        "App\\": "app/"
    }
},
"autoload-dev": {
    "psr-4": {
        "Tests\\": "tests/"
    }
},
Posted by: Guest on December-23-2020

Browse Popular Code Answers by Language