mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
public string $tableName
This commit is contained in:
@@ -10,9 +10,11 @@ use Rappasoft\LaravelLivewireTables\Views\Filters\TextFilter;
|
||||
|
||||
class BitcoinEventTable extends DataTableComponent
|
||||
{
|
||||
|
||||
public string $country;
|
||||
|
||||
protected $model = BitcoinEvent::class;
|
||||
public string $tableName = 'bitcoin_events';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -28,6 +28,7 @@ class BookCaseTable extends DataTableComponent
|
||||
'comment' => '',
|
||||
];
|
||||
protected $model = BookCase::class;
|
||||
public string $tableName = 'bookcases';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -17,6 +17,7 @@ class CityTable extends DataTableComponent
|
||||
public string $type;
|
||||
|
||||
protected $model = City::class;
|
||||
public string $tableName = 'cities';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -14,6 +14,7 @@ class CourseTable extends DataTableComponent
|
||||
public string $country;
|
||||
|
||||
protected $model = Course::class;
|
||||
public string $tableName = 'courses';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -18,6 +18,7 @@ class EventTable extends DataTableComponent
|
||||
public bool $viewingModal = false;
|
||||
public $currentModal;
|
||||
protected $model = CourseEvent::class;
|
||||
public string $tableName = 'events';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -13,6 +13,7 @@ class LecturerTable extends DataTableComponent
|
||||
{
|
||||
public string $country;
|
||||
protected $model = Lecturer::class;
|
||||
public string $tableName = 'lecturers';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -19,6 +19,7 @@ class LibraryItemTable extends DataTableComponent
|
||||
{
|
||||
public string $currentTab;
|
||||
protected $model = LibraryItem::class;
|
||||
public string $tableName = 'library_items';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -13,6 +13,7 @@ class MeetupEventTable extends DataTableComponent
|
||||
public string $country;
|
||||
|
||||
protected $model = MeetupEvent::class;
|
||||
public string $tableName = 'meetup_events';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -13,6 +13,7 @@ class MeetupTable extends DataTableComponent
|
||||
public ?string $country = null;
|
||||
|
||||
protected $model = Meetup::class;
|
||||
public string $tableName = 'meetups';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
@@ -13,6 +13,7 @@ class VenueTable extends DataTableComponent
|
||||
public string $country;
|
||||
|
||||
protected $model = Venue::class;
|
||||
public string $tableName = 'venues';
|
||||
|
||||
public function configure(): void
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user