KTVCentral/database/seeders/TextAdSeeder.php

52 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use App\Models\TextAd;
use App\Enums\TextAdColors;
class TextAdSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$ads = [
[
'content' => '本公司消費方式:包廂費(原價 * 時數 * 折數)+ 清潔費(一次)+ 總金額10%服務費(一次)。',
'color' => TextAdColors::Red,
],
[
'content' => '一般專案為包廂計費免收低消及人頭費如各族群優惠專案為包廂計費、不限人數K歌一口價。',
'color' => TextAdColors::Red,
],
[
'content' => '工商專案 上班族趕快來報到 不限人數 包廂計費 歡唱K歌一口價★星期一至星期日 上午0800 ~ 下午1700 ★歡唱3小時 小包廂 666元 中包廂 999元 大包廂(臺中公園店為中大包廂) 1299元',
'color' => TextAdColors::Green,
],
[
'content' => '趁年輕 一定要大膽瘋狂不限人數 包廂計費 歡唱K歌一口價★星期一至星期五 上午0800 ~ 下午1700 ★歡唱3小時(員林中山店為4小時) 小包廂 333元 中包廂 666元 大包廂(臺中公園店為中大包廂) 999元',
'color' => TextAdColors::Blue,
],
[
'content' => '重拾當年意氣風發的活力 不輸少年人啦不限人數 包廂計費 歡唱K歌一口價 ★星期一至星期五 上午0800 ~ 下午1700 ★歡唱4小時 小包廂 333元 中包廂 666元 大包廂 999元',
'color' => TextAdColors::Blue,
],
[
'content' => '各分店皆適用 生日快樂!吹個蠟燭 許個心願吧 壽星們 生日開趴的通通站出來 ★當日壽星限定(須出示相關證件供服務人員確認).享有好禮雙重送 ★好禮一生日紅酒一瓶🍷超級巨星6吋特製蛋糕什錦水果一盤義式冰淇淋莓果調酒(五選一) ★好禮二餐飲券600元(可當日折抵使用)',
'color' => TextAdColors::White,
],
];
foreach ($ads as $ad) {
TextAd::create([
'content' => $ad['content'],
'color' => $ad['color'],
'duration' => 1,
'is_active' => true,
]);
}
}
}