crud icon indicating copy to clipboard operation
crud copied to clipboard

Simplify the process of building CRUD (Create, Read, Update, Delete) functionality in Laravel using the features of Orchid.

Results 28 crud issues
Sort by recently updated
recently updated
newest added

Would it be possible for the new and edit actions to be done with modal forms? That the developer choose between modal and non-modal? Thanks

I felt this creates a more "complete" example. It will be wonderful if the PR is accepted, otherwise, I understand. Thank you.

Hi, Any reason why we don't follow Laravel's convention? It becomes one more thing to learn. Also, the `VERB` is not "restricted" in `Orchid/Crud` Reason I'm looking at this is...

Hi, I was wondering the possibility of adding additional custom views to the CRUD table view and it seems there's nowhere to hook into this. https://github.com/orchidsoftware/crud/blob/92f9736d715be852c79e00ab3f1e50447bd9ec02/src/Screens/ListScreen.php#L86 I think roughly here...

It would be great to add a display of nested resources when browsing, for example: ![image](https://user-images.githubusercontent.com/5102591/115978497-727f1b00-a588-11eb-84e9-5e7441a116e5.png) In this regard, I propose to add a new method to the resource class...

Hi, I would like to propose being able to write code like below: ```PHP TD::make('payment_gateway_id', 'Payment Gateway') ->sort() ->query(function ($search, $builder) { return $builder ->select('customers.*') // required, otherwise sorting has...

I created a resource and policy. And set return false the create method. Navigate the resource list page. Click create button and navigate back. Then when u click your profile...

Removes the prefix's use for binding and sending model values since there are more minuses from this than pluses. Along the way, this solves problem #15

# Adding control if the create button will be displayed in ListScreen ![Captura de Tela 2023-04-07 às 18 26 16](https://user-images.githubusercontent.com/56238048/230681238-7783caf3-ea82-4058-8df4-a132df8de5ce.png) ![Captura de Tela 2023-04-07 às 18 26 30](https://user-images.githubusercontent.com/56238048/230681288-dfe06c26-a259-4f2b-b3d9-43168d101fda.png)

I have custom action for bulk deleting records. ```php public function handle(Collection $models) { $models->each(function (Model $model) { $model->delete(); event(new MyEvent$model)); }); Toast::message('Custom message'); } ``` Action seems to be...