<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Serie extends Model
{
public $timestamps = false;
protected $fillable = ['nome'];
}
Bom dia,
Quando tento salvar uma nova série aparece o erro: Add [_token] to fillable property to allow mass assignment on [App\Serie]. Incluí na classe Serie o protected $fillable, mas estou fazendo algo errado. Poderiam me ajudar?