Support the ongoing development of Laravel.io →
Requests Database Forms
Last updated 2 years ago.
0

create method only accepts fields you defined in the model. check the $fillable array. http://laravel.com/docs/4.2/eloquent#mass-assignment

0

astroanu said:

create method only accepts fields you defined in the model. check the $fillable array. http://laravel.com/docs/4.2/eloquent#mass-assignment

The fillable array is already set to this:

class Song extends Eloquent{

	public $timestamps = false;
	
	protected $fillable = [
		'title', 'lyrics', 'slug'
	];
}
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.