miladimos / laravel-toolkit by miladimos

a package for collections of custom toolkit
305
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-04-19 15:14:18
Package Statistics
Total Downloads: 305
Monthly Downloads: 53
Daily Downloads: 0
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
    ],
    ...
},