diff options
author | Mateja <mail@matejamaric.com> | 2020-10-18 22:09:53 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-10-18 22:09:53 +0200 |
commit | 75e4ed82769143be8968edf9110e6e2fd5d85028 (patch) | |
tree | 77487b68567767ae01c832aa8b47148d4ab86137 /app/Models | |
parent | 4cd3e2eacb4e81950dddd3e64c6c81b5f1e3f24d (diff) | |
download | yota-laravel-75e4ed82769143be8968edf9110e6e2fd5d85028.tar.gz yota-laravel-75e4ed82769143be8968edf9110e6e2fd5d85028.zip |
forms and migrations
Diffstat (limited to 'app/Models')
-rw-r--r-- | app/Models/SpecialCall.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/Models/SpecialCall.php b/app/Models/SpecialCall.php new file mode 100644 index 0000000..0e537fe --- /dev/null +++ b/app/Models/SpecialCall.php @@ -0,0 +1,11 @@ +<?php + +namespace App\Models; + +use Illuminate\Database\Eloquent\Factories\HasFactory; +use Illuminate\Database\Eloquent\Model; + +class SpecialCall extends Model +{ + use HasFactory; +} |