PHPackages                             kevupton/ethereal - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. kevupton/ethereal

ActiveExtension[Database &amp; ORM](/categories/database)

kevupton/ethereal
=================

Extension functionality for laravel

v2.4.8(8y ago)31.1k13MITPHPPHP &gt;=5.3

Since Jul 27Pushed 8y agoCompare

[ Source](https://github.com/kevupton/ethereal)[ Packagist](https://packagist.org/packages/kevupton/ethereal)[ RSS](/packages/kevupton-ethereal/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (76)Used By (3)

**Ethereal**
============

[](#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](https://github.com/kevupton/ethereal/wiki)
-------------------------------------------------

[](#wiki)

---

**Installation:**
-----------------

[](#installation)

#### Download

[](#download)

Use composer to download the package into your project.

```
 composer require kevupton/ethereal

```

#### Setup

[](#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

[](#basic-usage)

Just extend the `Kevupton\Ethereal\Models\Ethereal` class instead of Laravel Model class, for each of your models you want Ethereal functionality.

```
