rami-awadallah/prehelpers

Simple view presenter library for Laravel.

dev-master 2017-10-04 12:15 UTC

This package is auto-updated.

Last update: 2024-03-23 01:00:14 UTC


README

$ composer require rami-awadallah/prehelpers

Once you've run composer update you'll need to register the service provider in your config/app.php file.

'providers' => [
    Ramiawadallah\Prehelpers\PrehelpersServiceProvider::class
]

Usage

Configuring Presenters

There's several ways to configure your presenters. First, you can utilize the configuration file, which can be published using the following command:

$ php artisan vendor:publish --provider="Ramiawadallah\Prehelpers\PrehelpersServiceProvider"