Search code examples
laravellaravel-5.5

How to do CRUD operation in Laravel 5.5 using a single view for all operation?


I don't want to create multiple view for create, delete, update. I want to perform on a single view.

for update operation, i want to use model pop up.


Solution

  • Take a look on this example I created:

    https://github.com/apsg/user-crud-excercise

    It's very simple User entity CRUD example, using almost entirely single view. The only operation done on separate view is the update.

    You should be able to easily implement update as a popup - no problem with that.