laravel exclude a word from route slug
hello I'm using backpack page manager and the auth route logout is conflicting with it as u can see in the picture it's assuming that logout is a page with a slug and trying to get its data. I tried…
hello I'm using backpack page manager and the auth route logout is conflicting with it as u can see in the picture it's assuming that logout is a page with a slug and trying to get its data. I tried…
Laravel has powerful and elegant validation features like unique/ignore/where. And Backpack's CRUD controllers allow for invoking Laravel validation from within the controller. It's clear to me how to invoke simple validation rules like required within the Backpack controller. But what…
I've defined a Backpack select_from_array column for the field form_trx in the table transactions. I want to populate the options array for that Backpack column with data that's stored in two columns (called value_store and value_display) of another database table…
Can be possible to store a file uploaded to a related table? Scenario: I have a usres table in database and another one pictures. Users Model have the following function public function picture() { return $this->hasOne(Picture::class); } And the Picture…
I installed Laravel 8 with backpack 5.1 and I run php artisan backpack:crud-operation SendNotification I got error: root@9139092f4397:/var/www/khm-hrms# php artisan backpack:crud-operation SendNotification BadMethodCallException Method IlluminateSupportStringable::lcfirst does not exist. at vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113 109▕ */ 110▕ public function __call($method, $parameters) 111▕ { 112▕…