ahsan7 years ago Best Answer Level 46ReplyReport Spamthis is MassAssignmentException you need to add this in your model <?php namespace App; use Illuminate\Database\Eloquent\Model; class Post extends Model { /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = []; } Like Reply 4 likes