kevupton / ethereal by kevupton

Extension functionality for laravel
1,102
3
0
Package Data
Maintainer Username: kevupton
Maintainer Contact: uptonkg@gmail.com (Kevin Upton)
Package Create Date: 2015-07-27
Package Last Update: 2018-05-06
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 15:02:31
Package Statistics
Total Downloads: 1,102
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 0
Total Forks: 1
Total Open Issues: 0

Ethereal

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.

Wiki


Author: Kevin Upton