mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
pagination 50
This commit is contained in:
@@ -19,7 +19,9 @@ class CityTable extends DataTableComponent
|
||||
public function configure(): void
|
||||
{
|
||||
$this->setPrimaryKey('id')
|
||||
->setAdditionalSelects(['id']);
|
||||
->setAdditionalSelects(['id'])
|
||||
->setColumnSelectStatus(false)
|
||||
->setPerPage(50);
|
||||
}
|
||||
|
||||
public function columns(): array
|
||||
|
||||
@@ -15,7 +15,9 @@ class CourseTable extends DataTableComponent
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
$this->setPrimaryKey('id');
|
||||
$this->setPrimaryKey('id')
|
||||
->setColumnSelectStatus(false)
|
||||
->setPerPage(50);
|
||||
}
|
||||
|
||||
public function columns(): array
|
||||
|
||||
@@ -20,7 +20,9 @@ class EventTable extends DataTableComponent
|
||||
->setAdditionalSelects([
|
||||
'course_id',
|
||||
'venue_id',
|
||||
]);
|
||||
])
|
||||
->setColumnSelectStatus(false)
|
||||
->setPerPage(50);
|
||||
}
|
||||
|
||||
public function columns(): array
|
||||
|
||||
@@ -15,7 +15,9 @@ class LecturerTable extends DataTableComponent
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
$this->setPrimaryKey('id');
|
||||
$this->setPrimaryKey('id')
|
||||
->setColumnSelectStatus(false)
|
||||
->setPerPage(50);
|
||||
}
|
||||
|
||||
public function columns(): array
|
||||
|
||||
@@ -16,7 +16,9 @@ class VenueTable extends DataTableComponent
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
$this->setPrimaryKey('id');
|
||||
$this->setPrimaryKey('id')
|
||||
->setColumnSelectStatus(false)
|
||||
->setPerPage(50);
|
||||
}
|
||||
|
||||
public function columns(): array
|
||||
|
||||
Reference in New Issue
Block a user