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

Closes https://github.com/orchidsoftware/crud/issues/76

There seems to be an issue when using policies with listing resources. For each item on the list, the corresponding policy's view() and edit() methods are invoked (as expected). However,...

title resources is showing even though the user does not have any of the appropriate permissions set for the resource menu items. This can be fixed with a simple if...

Hello, Is there any way to customize the forms of create/edit? For example to have tab functionality to group some fields on a specific tab like the following print-screen. ![image](https://user-images.githubusercontent.com/4165165/180284931-58869a80-01d2-48f6-bc8c-f9cf04eac1f1.png)

Couldn't figure out how to get the old value of a custom attachment from certain model , i added the Attachable trait , and the attachments is working and i...

Hi, I haven't find in the doc how to add a link to an other screen next to View and Edit buttons... So, is it possible ? Thanks !

In some projects it is necessary to redirect back to the resource edit view after save instead of being redirected to the resource index view. I imagine that a resource...

Hi, I'd like to change the text "There are no records in this view" for each resource I've set up. I thought you would be able to do it like...

I am trying to add a submit button at the end of the form. ```php public function fields(): array { return [ // other fields ... Button::make($this::updateButtonLabel()) ->class('btn btn-primary')->method('update') ];...

I use a `Cropper` in my resource. It is working fine. Except the file path, when editing, who is not good. It use `http://localhost/storage/2021/10/18/c0d39298abcd2f0b65e3d583f475fef53bfc78ea.png` and not the good APP_URL defined...