kevupton / ethereal
Extension functionality for laravel
v2.4.8
2018-05-06 03:32 UTC
Requires
- php: >=5.3
- kevupton/laravel-json-response: ^0.0.10
Requires (Dev)
- barryvdh/laravel-ide-helper: ^2.4
- laravel/laravel: 5.5.*
- laravel/lumen-framework: 5.5.*
This package is auto-updated.
Last update: 2026-06-15 16:16:48 UTC
README
Laravel extension package.
Extends the core laravel framework, providing easier, faster development experience.
Check out the wiki to view examples and full documentation.
Wiki
Installation:
Download
Use composer to download the package into your project.
composer require kevupton/ethereal
Setup
Then add the Kevupton\Ethereal\Providers\EtherealServiceProvider to your app.php config file under providers
'providers' => [ /* * Laravel Framework Service Providers... * Place at the end of the array */ Kevupton\Ethereal\Providers\EtherealServiceProvider::class, ],
Basic Usage
Just extend the Kevupton\Ethereal\Models\Ethereal class instead of Laravel Model class, for each of your models you want Ethereal functionality.
<?php namespace My\Namespace\Location; use Kevupton\Ethereal\Models\Ethereal; class Example extends Ethereal { }
Check out the wiki for the complete documentation on how to use.
Author: Kevin Upton