Skip to content

Latest commit

 

History

History
executable file
·
63 lines (43 loc) · 2.16 KB

README.md

File metadata and controls

executable file
·
63 lines (43 loc) · 2.16 KB

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.