Skip to content

joaogl/support

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

support

Latest Stable Version Latest Unstable Version Software License Build Status Quality Score Total Downloads

This package is the support for every jlourenco package. It does not depend on any other jlourenco package and it adds a few helper functions.

Install

Via Composer

$ composer require jlourenco/support
$ php artisan jlourenco:setup

Usage

Schema::create('TestingTable', function (Blueprint $table) {
    $table->increments('id');
    $table->string('name', 25);
    $table->string('description', 150)->nullable();
    $table->timestamps();
    $table->creation();
});

Schema::table('TestingTable', function (Blueprint $table) {
    $table->creationRelation();
});

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email jglourenco.pt@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.