Skip to content

Instantly share code, notes, and snippets.

@aasumitro
Created February 9, 2018 10:03
Show Gist options
  • Save aasumitro/0b8a87cfc499172d0e85f78571af860c to your computer and use it in GitHub Desktop.
Save aasumitro/0b8a87cfc499172d0e85f78571af860c to your computer and use it in GitHub Desktop.
new model
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ModelTableTest extends Model {
protected $table = 'tabel_test';
protected $fillable = [
'id',
'title',
'body',
'category',
'tag',
'created_at',
'updated_at'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment