mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
19 lines
495 B
PHP
19 lines
495 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
* The class name of the status model that holds all statuses.
|
|
*
|
|
* The model must be or extend `Spatie\ModelStatus\Status`.
|
|
*/
|
|
'status_model' => Spatie\ModelStatus\Status::class,
|
|
|
|
/*
|
|
* The name of the column which holds the ID of the model related to the statuses.
|
|
*
|
|
* You can change this value if you have set a different name in the migration for the statuses table.
|
|
*/
|
|
'model_primary_key_attribute' => 'model_id',
|
|
];
|