flobbos/laravel-simple-helper

A small package for better maintenance of your helper classes.
7,300 2
Install
composer require flobbos/laravel-simple-helper
Latest Version:0.13
PHP:>=5.6.0
License:MIT
Last Updated:Aug 23, 2019
Links: GitHub  ·  Packagist
Maintainer: Flobbos

Laravel-Simple-Helper

Laravel Simple Helper

Install and maintain all your helpers in a simple way

Docs

Installation

Install package

Add the package in your composer.json by executing the command.

composer require flobbos/laravel-simple-helper

Register the service provider with your app/config/app.php

Flobbos\LaravelSimpleHelper\LaravelSimpleHelperServiceProvider::class,

Configuration

Publish the configuration file.

php artisan vendor:publish 

Use the package

By default the package assumes that your helpers live in the app\Helpers directory. You have the option to specify the helpers directory in the config.

The second option is to just load everything that's in the Helpers directory or specify each helper in the config file.

Laravel compatibility

LaravelSimpleHelper is generally compatible with Laravel version 5.X.