Backend for songs.zachdecook.com
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Suggestion extends Model
{
    public $fillable = ['song', 'from'];
    //
}