aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Image.php
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-11-06 19:59:52 +0100
committerMateja <mail@matejamaric.com>2020-11-06 19:59:52 +0100
commit7907c1eecc37e5378da0e28838203c70c693ec71 (patch)
tree9857f84448852867b3cd85aece534478fb05d09e /app/Models/Image.php
parent34b559e17e7896ca5b19221187f77c063b68d8eb (diff)
downloadyota-laravel-7907c1eecc37e5378da0e28838203c70c693ec71.tar.gz
yota-laravel-7907c1eecc37e5378da0e28838203c70c693ec71.zip
Gallery work...
Diffstat (limited to 'app/Models/Image.php')
-rw-r--r--app/Models/Image.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/Models/Image.php b/app/Models/Image.php
new file mode 100644
index 0000000..643259e
--- /dev/null
+++ b/app/Models/Image.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Factories\HasFactory;
+use Illuminate\Database\Eloquent\Model;
+
+class Image extends Model
+{
+ use HasFactory;
+}