Alexandr Chernyaev

Results 128 comments of Alexandr Chernyaev

Hey @plastique, thank you for the PR. I think there might be an issue with this proposal for those who modify the models. For instance, I don't have an `email`...

Hi, thanks for the PR. Could you give more details? By default, the attachment model does not contain fillable `id` https://github.com/orchidsoftware/platform/blob/1d232452289950366322e77a9d079cebc305a906/src/Attachment/Models/Attachment.php#L32-L46

Hi @TobiasPalludan, I think it depends on the context. To make it clearer, it can be compared as follows. When writing: ```php Relation::make('idea') ->fromModel(Idea::class, 'name') ->title('Choose your idea'); ``` The...

Can you add a simple test to make sure we don't break support in the future?

Filters, like pagination, depend on the HTTP parameter. If you have multiple tables in tabs on your page, it's best to separate them. For example use [TabMenu](https://orchid.software/en/docs/custom-template/#tabmenu)

Hi @methos02 Thank you for submitting a PR. I'm not using Vite yet, but can't it generate ready-to-use `app.js` that could be specified in the configuration file?

If there is no calendar, the time is displayed. What were you expecting?

The third argument of the `fromModel` method already exists. ```php Select::make('')->fromModel(User::class, 'name', 'id'), ``` The syntax is getting long. I also have two questions. - We rely on the package...

It seems to me that we already have what you would like, with a field that automatically does field searches: ```php Relation::make('country') ->fromModel(Country::class, 'name') ->searchColumns('code', 'dial_code') ->title('Choose your country'); ```

Hi! Thank you for PR. I wanted to ask, why didn't the existing model [policy-based](https://orchid.software/en/docs/packages/crud/#policies) action show/hide system suit? Are there any particular features or requirements that aren't met by...