Add new seeder, add new public const variable for 1668, update code in CreateBookingLogic for 1688 booking flow

This commit is contained in:
Uwais Al-Qarni
2022-04-28 16:40:17 +08:00
parent fce22ab2af
commit cd4bc4fb72
3 changed files with 44 additions and 3 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
use Illuminate\Database\Seeder;
class AddServiceTypeSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
\DB::table('service_types')->insert(array (
0 =>
array (
'name' => '1688',
'status' => '2',
'deleted_at' => NULL,
'created_at' => '2021-03-09 07:52:56',
'updated_at' => '2021-03-09 09:57:40',
)
));
}
}