10-04-2026
This commit is contained in:
parent
4d6b4930b2
commit
4bb89aad8c
836 changed files with 52961 additions and 5950 deletions
48
database/factories/CabinetTabletSettingFactory.php
Normal file
48
database/factories/CabinetTabletSettingFactory.php
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\CabinetTabletSetting;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @template TModel of \App\Models\CabinetTabletSetting
|
||||
*
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<TModel>
|
||||
*/
|
||||
class CabinetTabletSettingFactory extends Factory
|
||||
{
|
||||
protected $model = CabinetTabletSetting::class;
|
||||
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'store_status' => 'auto',
|
||||
'notice_headline' => null,
|
||||
'notice_subtext' => null,
|
||||
'override_open_today' => null,
|
||||
'override_close_today' => null,
|
||||
'next_appointment_date' => fake()->dateTimeBetween('now', '+7 days'),
|
||||
'next_appointment_time' => '14:00',
|
||||
'hours_monday_open' => '10:00',
|
||||
'hours_monday_close' => '18:00',
|
||||
'hours_tuesday_open' => '10:00',
|
||||
'hours_tuesday_close' => '18:00',
|
||||
'hours_wednesday_open' => '10:00',
|
||||
'hours_wednesday_close' => '18:00',
|
||||
'hours_thursday_open' => '10:00',
|
||||
'hours_thursday_close' => '18:00',
|
||||
'hours_friday_open' => '10:00',
|
||||
'hours_friday_close' => '18:00',
|
||||
'hours_saturday_open' => '10:00',
|
||||
'hours_saturday_close' => '14:00',
|
||||
'hours_sunday_open' => null,
|
||||
'hours_sunday_close' => null,
|
||||
'contact_phone' => '0521 98620100',
|
||||
'contact_email' => 'info@cabinet-bielefeld.de',
|
||||
];
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue