Last active
April 17, 2018 09:49
-
-
Save mykeels/b6cc690012ca11063d0303ee2daa08bd to your computer and use it in GitHub Desktop.
A sample laravel model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
use App\Traits\ModelTableNameTrait; | |
class SampleMigration | |
{ | |
use ModelTableNameTrait; | |
protected $fillable = [ | |
'sample_column' | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment