Editing a Post – WordPress-Like Blog Laravel 5.7 and AdminLTE 3 (13)
WordPress-Like Blog Laravel 5.7 and AdminLTE 3 (13) – Editing a Post In this thirteenth part of creating WordPress-Like Blog using Laravel 5.7 and AdminLTE 3, we will : Edit an Existing Post Edit an Existing Post Jump over to the Backend\BlogController.php and create edit() method.
1 2 3 4 5 |
public function edit($id) { $post = Post::findOrFail($id); return view("backend.blog.edit",compact('post')); } |
Create a new file inside resource/views/backend/blog directory and Read more about Editing a Post – WordPress-Like Blog Laravel 5.7 and AdminLTE 3 (13)[…]