Files
ploi-core/config/tables.php
Dennis d4c495eaee wip
2022-08-17 09:32:33 +02:00

81 lines
2.1 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Date / Time Formatting
|--------------------------------------------------------------------------
|
| These are the formats that Filament will use to display dates and times
| by default.
|
*/
'date_format' => 'M j, Y',
'date_time_format' => env('APP_DATE_TIME_FORMAT', 'Y-m-d H:i:s'),
'time_format' => 'H:i:s',
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| This is the storage disk Filament will use to find media. You may use any
| of the disks defined in the `config/filesystems.php`.
|
*/
'default_filesystem_disk' => env('TABLES_FILESYSTEM_DRIVER', 'public'),
/*
|--------------------------------------------------------------------------
| Dark mode
|--------------------------------------------------------------------------
|
| By enabling this setting, your tables will be ready for Tailwind's Dark
| Mode feature.
|
| https://tailwindcss.com/docs/dark-mode
|
*/
'dark_mode' => false,
/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
|
| This is the configuration for the pagination of tables.
|
*/
'pagination' => [
'default_records_per_page' => 25,
],
/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
|
| This is the configuration for the general layout of tables.
|
*/
'layout' => [
'actions' => [
'cell' => [
'alignment' => 'right',
],
'modal' => [
'actions' => [
'alignment' => 'left',
],
],
],
],
];