class OpenPendingMlsTickets extends BaseWidget
{
protected static ?string $heading = 'Open/Pending MLS Tickets';
protected $defaultPaginationPageOption = 5;
protected ?string $emptyStateDescription = 'No open or pending tickets';
protected ?string $emptyStateIcon = 'heroicon-o-check-circle';
protected function getTableQuery(): Builder
{
return UpdateRequest::where('status','<>','Closed')->with(['model.spec']);
}
protected function getTableColumns(): array
{
....
class OpenPendingMlsTickets extends BaseWidget
{
protected static ?string $heading = 'Open/Pending MLS Tickets';
protected $defaultPaginationPageOption = 5;
protected ?string $emptyStateDescription = 'No open or pending tickets';
protected ?string $emptyStateIcon = 'heroicon-o-check-circle';
protected function getTableQuery(): Builder
{
return UpdateRequest::where('status','<>','Closed')->with(['model.spec']);
}
protected function getTableColumns(): array
{
....