Pedro Martins
Pedro Martins
__Description__ Setting up a tenant APP with fallback domain. `My regular routes: ` ``` Route::group([ 'middleware' => ['web'], 'domain' => config('tenancy.hostname.default'), ], function () { Route::get('teste1', 'TestController@index'); Route::get('teste2', 'TestController@index'); });...
## WHY ### BEFORE - What was wrong? What was happening before this PR? **1 - Error reported in https://github.com/Laravel-Backpack/CRUD/issues/4536 .** The error was due to the fact that for...
## WHY ### BEFORE - What was wrong? What was happening before this PR? This is a fix for https://github.com/Laravel-Backpack/CRUD/issues/4496 After table redraw the previous selections not found in list...
## WHY ### BEFORE - What was wrong? What was happening before this PR? fixes https://github.com/Laravel-Backpack/CRUD/issues/4117 ### Is it a breaking change? nop
## WHY ### BEFORE - What was wrong? What was happening before this PR? I already attempted it here: https://github.com/Laravel-Backpack/CRUD/pull/4504 It was not fully functional, this fixes it for good...
## WHY ### BEFORE - What was wrong? What was happening before this PR? This is a follow-up of #3932 , that PR made it work in simpler scenarios, but...
## WHY ### BEFORE - What was wrong? What was happening before this PR? [1] - Show didn't eager load relationships List does, why not show too ? [2] -...
We have an issue with browser Back button and the way we store the alerts. - We store the alerts in LocalStorage. - We display the Alert and then delete...
## WHY ### BEFORE - What was wrong? What was happening before this PR? Two things fixed here: [1] datatable persistency was not getting the filters re-applied if you manually...
Mainly this fixes: 1- the total count was always done from model query (Select *), so even if ou apply a scope in your query the total count would also...