How can I pass data from blade view to modal dialog : For example : I pass $user from controller to view :
$user = User::findOrFail($id);
return view('user.show')->withUser($user);
Next, I want to pass this data $user to a modal included in this view via a button like this :
@include('user.edit',$user)
;
and there in the modal I can set @user's value to edit them for example.
Please Help me :)
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire