class ViewTickets extends Page implements HasTable
{
use InteractsWithTable;
protected string $view = 'filament.pages.view-tickets';
protected ?string $heading = '';
protected static bool $shouldRegisterNavigation = false;
public function table(Table $table): Table
{
return $table
->query(Ticket::query()->with(['user', 'assignedUser']))
.....
class ViewTickets extends Page implements HasTable
{
use InteractsWithTable;
protected string $view = 'filament.pages.view-tickets';
protected ?string $heading = '';
protected static bool $shouldRegisterNavigation = false;
public function table(Table $table): Table
{
return $table
->query(Ticket::query()->with(['user', 'assignedUser']))
.....