Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/app/Suggestion.php')
| -rw-r--r-- | laravel/app/Suggestion.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/laravel/app/Suggestion.php b/laravel/app/Suggestion.php new file mode 100644 index 0000000..5d081ff --- /dev/null +++ b/laravel/app/Suggestion.php @@ -0,0 +1,11 @@ +<?php + +namespace App; + +use Illuminate\Database\Eloquent\Model; + +class Suggestion extends Model +{ + public $fillable = ['song', 'from']; + // +} |