Skip to content

Instantly share code, notes, and snippets.

@achmadfatoni
Created August 19, 2017 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save achmadfatoni/a734383de900e221effe14d488bc9e6c to your computer and use it in GitHub Desktop.
Save achmadfatoni/a734383de900e221effe14d488bc9e6c to your computer and use it in GitHub Desktop.
model
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $table = 'posts';
protected $fillable = ['title', 'body'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment