mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-09-01 02:33:56 +00:00
Rental Service
Repair Service
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
|
||||
namespace Database\Seeders\RepairService;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Str;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class RepairServiceContractTemplatesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('contract_templates')->insert([
|
||||
[
|
||||
'id' => 2,
|
||||
'user_id' => 4,
|
||||
'name' => 'Repair Car Service',
|
||||
'complete_day_range' => 1,
|
||||
'status' => config('constants.contact.status.active'),
|
||||
'created_at' => date('Y-m-d H:i:s'),
|
||||
'updated_at' => date('Y-m-d H:i:s')
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user