🆙 More fixes 🆙

This commit is contained in:
Remco
2026-01-20 17:48:16 +01:00
parent 5b3645abba
commit 9a8fa8b1ff
7 changed files with 55 additions and 42 deletions
@@ -5,17 +5,4 @@ namespace App\Filament\Resources\Hotel;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Collection;
class CustomQueryBuilder extends Builder
{
public function __construct()
{
// Call the parent constructor with a dummy query
parent::__construct(app('db')->query());
}
#[\Override]
public function get($columns = ['*']): Collection
{
return collect(); // Return an empty collection
}
}
class CustomQueryBuilder extends Builder {}