Alexandr Chernyaev
Alexandr Chernyaev
Hey @AlejandroAkbal Unfortunately, this is not enough for me to reproduce, because there are no fields that your code refers to. I looked at the maps documentation their documentation is...
Hi @HichemBenali, as with any religious dispute, there is no one right answer. There are two approaches to this issue: thick controllers and thin models, and vice versa. In the...
Hi @wergh. I understand correctly that we need to remove the explicit definition in this place, and then everything will be okay? ```php public function __construct($attachment, int $time) { $this->attachment...
Hi @thewebartisan7, I don't know how relevant this is. Because if you inherit from the `Attachment` model and not just replace it, then this should work well. Can you check?
This is because turbolinks handles redirects in this way. This can be found here https://github.com/turbolinks/turbolinks#following-redirects Currently, there are two solutions: - Add header: `$response->header('Turbolinks-Location', $request->url());` - Add `->rawClick` method for...
Hi @mdcass in the release under the number 6.10.0 the necessary middleware was added. For private routes, it is applied automatically. For the rest, it must be added manually. For...
Hi @ppalmeida The model and database may vary depending on the project. Also, the package can be installed into an existing application, for this reason we use the pre-installed model,...
Hi, I cannot reproduce this. Created a modal window with the following content: ```php Select::make('test_modal_select') ->multiple() ->options(['foo','bar','baz']), ``` I saved the values and selected them again. I also tried to...
@ShamarKellman When doing caching, this will be executed and lead to the same problem as using `__()`.
Hey @RaiserWeb. Filters that are specified in the tables actually look like HTTP: ```php http://example.com/demo?filter[id]=1 $model->where('id', '=', 1) ``` **To resolve this issue:** In fact, we have to make either...