Laravel
Route Resource
Basic Route Passing Parameters Add inside blog.blade.php Optional Parameter plus default value
Laravel
Form Handling
Basic Form Handling in routes/web.php add: Laravel will use get or post automatically as the code inside the function will required. inside controller (at ProjectsController in this example) It’s return all entered information inside the web page call with: ” {{ csrf_field() }} ” – this is a security helper that put hidden input like this: <input type=”hidden” name=”_token” value=”qPc0L8dtVwKnkagCdvaWcKgVfzLUkj3DwWFzZ7Cm”> Advance Form Handling Create a project and store the data Read more…