migrate to gtea from bistbucket
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Restaurant\Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Modules\Restaurant\Models\QRMenuSetting;
|
||||
|
||||
class QRMenuSettingTableSeeder extends Seeder
|
||||
{
|
||||
public function run(): void
|
||||
{
|
||||
QRMenuSetting::create([
|
||||
'restaurant_id' => 1,
|
||||
'name' => 'Default QR Menu',
|
||||
'menu_title' => 'Our Menu',
|
||||
'primary_color' => '#FF5722',
|
||||
'secondary_color' => '#FFC107',
|
||||
'bg_color' => '#FFFFFF',
|
||||
'template' => 'template_1',
|
||||
'description' => 'Welcome to our digital menu!',
|
||||
'wifi_name' => 'Restaurant-WiFi',
|
||||
'wifi_ssid' => 'RESTO1234',
|
||||
'wifi_password' => '12345678',
|
||||
'status' => 1, // active/inactive
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user