Skip to content

Instantly share code, notes, and snippets.

@mykeels
Last active April 17, 2018 09:49
Show Gist options
  • Save mykeels/b6cc690012ca11063d0303ee2daa08bd to your computer and use it in GitHub Desktop.
Save mykeels/b6cc690012ca11063d0303ee2daa08bd to your computer and use it in GitHub Desktop.
A sample laravel model
<?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