mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-12 02:02:15 +01:00
Added week start
This commit is contained in:
19
lang/en/enum.php
Normal file
19
lang/en/enum.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use App\Enums\Weekday;
|
||||
|
||||
return [
|
||||
|
||||
'weekday' => [
|
||||
Weekday::Monday->value => 'Monday',
|
||||
Weekday::Tuesday->value => 'Tuesday',
|
||||
Weekday::Wednesday->value => 'Wednesday',
|
||||
Weekday::Thursday->value => 'Thursday',
|
||||
Weekday::Friday->value => 'Friday',
|
||||
Weekday::Saturday->value => 'Saturday',
|
||||
Weekday::Sunday->value => 'Sunday',
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user