diff options
Diffstat (limited to 'app/Airing.php')
| -rw-r--r-- | app/Airing.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Airing.php b/app/Airing.php new file mode 100644 index 0000000..9e14571 --- /dev/null +++ b/app/Airing.php @@ -0,0 +1,16 @@ +<?php + +namespace App; + +use Illuminate\Database\Eloquent\Model; + +class Airing extends Model +{ + protected $table = 'airing'; + protected $fillable = [ + 'mal_id', + 'episode', + 'aired_at', + 'duration' + ]; +} |
