miladimos / laravel-toolkit by miladimos

a package for collections of custom toolkit
2,837
7
2
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: 2025-04-01 03:06:33
Package Statistics
Total Downloads: 2,837
Monthly Downloads: 654
Daily Downloads: 10
Total Stars: 7
Total Watchers: 2
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
    ],
    ...
},