johnnyvaz1 of Flag Brasil
10/20/2019 - 9:05 PM

laravel model

modelo basico model laravel

class Product extends Model
{
    protected $table = 'product';
    public $timestamps = false;
    protected $fillable = [
        'title',
        'subtitle',
        'head'
    ];
}