2017 © Pedro Peláez
 

utils modelutils

Model utils for laravel

image

beautycoding/modelutils

Model utils for laravel

  • Monday, June 20, 2016
  • by beautycoding
  • Repository
  • 2 Watchers
  • 0 Stars
  • 100 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 2 % Grown

The README.md

ModelUtils (Laravel 5 Package)

Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

In order to install Laravel 5 ModelUtils, just add, (*2)

"beautycoding/modelutils": "dev-master"

to your composer.json. Then run composer install or composer update., (*3)

Then in your config/app.php add, (*4)

    BeautyCoding\ModelUtils\ModelUtilsServiceProvider::class,

Publish config:, (*5)

    php artisan vendor:publish

Edit config file config/modelutils.php with own namespace., (*6)

Use in proper model trait UuidModel:, (*7)

<?php

use Illuminate\Database\Eloquent\Model;
use BeautyCoding\ModelUtils\Traits\UuidModel;

class User extends Model
{
    use UuidModel; // add this trait to your model
    ...
}

Model has to have field named uuid (32characters long). Check RFC for more information., (*8)

The Versions

20/06 2016

dev-master

9999999-dev

Model utils for laravel

  Sources   Download

MIT

The Requires

 

by Avatar AntyRace

20/06 2016

1.2.0

1.2.0.0

Model utils for laravel

  Sources   Download

MIT

The Requires

 

by Avatar AntyRace

16/03 2016

1.0.0

1.0.0.0

Model utils for laravel

  Sources   Download

MIT

The Requires

 

by Avatar AntyRace

16/03 2016

1.1.0

1.1.0.0

Model utils for laravel

  Sources   Download

MIT

The Requires

 

by Avatar AntyRace

16/03 2016

0.0.1

0.0.1.0

Model utils for laravel

  Sources   Download

MIT

The Requires

 

by Avatar AntyRace