Looking to hire Laravel developers? Try LaraJobs

laravel-presenter maintained by cherrypulp

Description
A laravel helper for the presenter design pattern
Last update
2019/10/17 18:43 (dev-master)
License
Links
Downloads
46

Comments
comments powered by Disqus

Laravel Presenter

Build Status styleci Scrutinizer Code Quality SensioLabsInsight Coverage Status

Packagist Packagist Packagist

Package description: CHANGE ME

Installation

Install via composer

composer require cherrypulp/laravel-presenter

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Cherrypulp\LaravelPresenter\ServiceProvider::class,

Register Facade

Register package facade in config/app.php in aliases section

Cherrypulp\LaravelPresenter\Facades\LaravelPresenter::class,

Publish Configuration File

php artisan vendor:publish --provider="Cherrypulp\LaravelPresenter\ServiceProvider" --tag="config"

Usage

CHANGE ME

Security

If you discover any security related issues, please email instead of using the issue tracker.

Credits

This package is bootstrapped with the help of blok/laravel-package-generator.