kevupton / ethereal
Extension functionality for laravel
Installs: 1 104
Dependents: 3
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 1
Open Issues: 0
Type:extension
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.*
- dev-master
- v2.4.8
- v2.4.7
- v2.4.6
- v2.4.5
- v2.4.4
- v2.4.3
- v2.4.2.5
- v2.4.2.4
- v2.4.2.3
- v2.4.2.2
- v2.4.2.1
- v2.4.2
- v2.4.1
- v2.4
- v2.3.9.6
- v2.3.9.5
- v2.3.9.4
- v2.3.9.3
- v2.3.9.2
- v2.3.9.1
- v2.3.9
- v2.3.8
- v2.3.7
- v2.3.6
- v2.3.5
- v2.3.4
- v2.3.3
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.9
- v2.2.8
- v2.2.7
- v2.2.6
- v2.2.5
- v2.2.4
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.9
- v2.1.8
- v2.1.7
- v2.1.6
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0.1
- v2.1.0
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.1.2.1
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.71
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0
This package is auto-updated.
Last update: 2024-10-15 12:44:32 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