orchidsoftware / crud

Simplify the process of building CRUD (Create, Read, Update, Delete) functionality in Laravel using the features of Orchid.
https://orchid.software
MIT License
137 stars 34 forks source link

Custom crud Screens. #79

Closed santutu closed 2 years ago

santutu commented 2 years ago

how think about that to set screens in routes/crud.php by config file for full customization?

eg config/platform-crud.php

return [
      'createScreen' => MyCustomCreateScreen::class,
      //list, edit, view...
];
santutu commented 2 years ago

But it can bind in service provider without config. eg. $this->app->bind(CreateScreen::class, CustomCreateScreen::class);