I have a form that accepts data which will be used to create two new database table entries. The form takes both the users details and their address. The user details will be st
@cheelahim is correct, When passing an array to Model::create(), all extra values that aren't in Model::fillable will be ignored.
I would however, STRONGLY RECOMMEND that you do not pass Input::all() to a model. You really should be validating and verifying the data before throwing it into a model.