summaryrefslogtreecommitdiff
path: root/app/Airing.php
diff options
context:
space:
mode:
authorhorus2020-03-05 16:02:10 +0100
committerhorus2020-03-05 16:02:10 +0100
commit5dda561d73c9a5698386d643d56a142aa4bbdeec (patch)
tree55afe2db98d0fa15fc845cc3da3afe6b517bbd3d /app/Airing.php
parent420e44e0fe4623a439e26dfd0526ee5ef606a170 (diff)
downloadsenpai-5dda561d73c9a5698386d643d56a142aa4bbdeec.tar.gz
Committing intermediate state.
Diffstat (limited to 'app/Airing.php')
-rw-r--r--app/Airing.php16
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'
+ ];
+}