platform
platform copied to clipboard
Orchid is a @laravel package that allows for rapid application development of back-office applications, admin/user panels, and dashboards.
Fixes #2524 ## Proposed Changes - Drop fields that had its `name` attributes already mapped from `listener_controller`s `targets` variable - The remaining fields (if any) are used to try and...
**Is your feature request related to a problem? Please describe.** When a `Matrix` and any other `Field` types share a `Layout` that's working under a `Listener`, the `Matrix` does not...
**Describe the bug** If I try to hide the calendar with `noCalender()` on the DateTimer, the selection for time is always displayed 
**Describe the bug** I try to create a sample for using attachments. I use all steps from https://orchid.software/en/docs/attachments/ and https://orchid.software/en/docs/quickstart-files/. If i a the following to the Model "post", i...
**Is your feature request related to a problem? Please describe.** I suggest a way to add custom data attributes to options on Select when use FromModel **Describe the solution you'd...
**Describe the bug** If you have a class variable which is loaded by the `query` function in the `Screen` (image for reference) and If you are using this variable in...
**Describe the bug** I have a screen with a Listener and the listener renders a multi-page table based on a database query. Altering the listener's fields filter and update the...
Done to assign a data controller for the layer. Subsequently use the Stimulus. Example: ``` class PlatformScreen extends Screen { ... public function layout(): iterable { return [ Layout::rows([ Input::make('name')->set('data-hello-target',...
Hi, consider this: ```php Relation::make('account')->fromModel(Account::class, 'first_name')->title('Account'), ``` I would like to do something like this: ```php Relation::make('account')->fromModel(Account::class, fn ($model) => $model->first_name . ' ' . $model->last_name)->title('Account'), ``` Or this: ```php...
Hello, I have a tree-like data like this : - folderA - childA1 - childA1X - childA1Y - childA1Z - childA2 - childA3 - folderB - childB1 - childB2 -...