add static azmayesh fields

This commit is contained in:
2024-10-23 15:54:01 +03:30
parent c2ceb3d343
commit e9098b0a55
12 changed files with 137 additions and 18 deletions

View File

@@ -16,13 +16,41 @@ class AzmayeshSeeder extends Seeder
DB::table('azmayeshes')->insert([
[
'id' => 1,
'name' => '',
'lat' => '13.45',
'lng' => '11.85',
'azmayesh_type_id' => 1,
'azmayesh_type_name' => 'test',
'province_id' => 11,
'province_name' => 'test',
'request_date' => '1403-07-04',
'report_date' => '1403-07-05',
'request_number' => 0,
'employer' => 'test',
'contractor' => 'test',
'work_number' => 0,
'project_name' => 'test',
'consultant' => 'test',
'applicant' => 'test',
'created_at' => now(),
'updated_at' => now()
],
[
'id' => 2,
'name' => '',
'lat' => '13.45',
'lng' => '11.85',
'azmayesh_type_id' => 1,
'azmayesh_type_name' => 'test',
'province_id' => 11,
'province_name' => 'test',
'request_date' => '1403-07-04',
'report_date' => '1403-07-05',
'request_number' => '0',
'employer' => 'test',
'contractor' => 'test',
'work_number' => '0',
'project_name' => 'test',
'consultant' => 'test',
'applicant' => 'test',
'created_at' => now(),
'updated_at' => now()
],