publishing library items

This commit is contained in:
Benjamin Takats
2022-12-15 16:08:25 +01:00
parent 8d098b9625
commit 1deb7cbf22
8 changed files with 243 additions and 3 deletions

18
config/model-status.php Normal file
View File

@@ -0,0 +1,18 @@
<?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',
];