How to pass a blade hidden value to controller ? I tried this :
Create form :
I got the form id by url like this :
<a href="../journal/create?edition=" class="btn btn-primary">Add Journal</a>
and the controller is :
$id = $request->get('edition');
$journal = Edition::findOrFail($id)->journal()->create($input);
The result gave me this error "Undefined variable: edition (View: C:\xampp\htdocs\1mark\resources\views\jurnal\form.blade.php) (View: C:\xampp\htdocs\1mark\resources\views\jurnal\form.blade.php)
"
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire