miladimos / laravel-toolkit by miladimos

a package for collections of custom toolkit
2,134
7
3
Package Data
Maintainer Username: miladimos
Maintainer Contact: miladimos@outlook.com (miladimos)
Package Create Date: 2020-08-31
Package Last Update: 2023-03-07
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-12-17 03:06:57
Package Statistics
Total Downloads: 2,134
Monthly Downloads: 176
Daily Downloads: 2
Total Stars: 7
Total Watchers: 3
Total Forks: 2
Total Open Issues: 0

Installation

composer require miladimos/laravel-toolkit

Install Package Configs

php artisan toolkit:install

Create new helper file

php artisan make:helper {name}

default name is: helpers

if you want create empty helper file use -e|--empty option

Register helper methods globally

in composer.php file:

"autoload": {
    "files": [
        "pathToHelperFile.php" // app/Helpers/helpers.php
    ],
    ...
},