Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 8, 2018 02:37
Show Gist options
  • Save jsdecena/61106d673966cb459c19e92b7b36b5f7 to your computer and use it in GitHub Desktop.
Save jsdecena/61106d673966cb459c19e92b7b36b5f7 to your computer and use it in GitHub Desktop.
Article Model
<?php
namespace App\Articles;
use Illuminate\Database\Eloquent\Model;
class Article extends Model {
protected $fillable = [
'title',
'content'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment