Merge pull request #110 from witelgroup/feature/NoProcess

add city
This commit is contained in:
Amir Ghasempoor
2025-12-22 11:39:19 +03:30
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -50,6 +50,8 @@ class RequestPortalController extends Controller
'username' => $user->username, 'username' => $user->username,
'province_id' => $user->province_id, 'province_id' => $user->province_id,
'province_name' => $user->province_fa, 'province_name' => $user->province_fa,
'city_id' => $user->city_id ?? null,
'city_name' => $user->city_fa ?? null,
'edare_shahri_id' => $user->edarate_shahri_id ?? null, 'edare_shahri_id' => $user->edarate_shahri_id ?? null,
'edare_shahri_name' => $user->edarate_shahri_name ?? null, 'edare_shahri_name' => $user->edarate_shahri_name ?? null,
'state_id' => $state, 'state_id' => $state,
@@ -123,6 +125,8 @@ class RequestPortalController extends Controller
'username' => $user->username, 'username' => $user->username,
'province_id' => $user->province_id, 'province_id' => $user->province_id,
'province_name' => $user->province_fa, 'province_name' => $user->province_fa,
'city_id' => $user->city_id ?? null,
'city_name' => $user->city_fa ?? null,
'edare_shahri_id' => $user->edarate_shahri_id ?? null, 'edare_shahri_id' => $user->edarate_shahri_id ?? null,
'edare_shahri_name' => $user->edarate_shahri_name ?? null, 'edare_shahri_name' => $user->edarate_shahri_name ?? null,
'state_id' => $state, 'state_id' => $state,
@@ -216,6 +220,8 @@ class RequestPortalController extends Controller
'username' => $user->username, 'username' => $user->username,
'province_id' => $user->province_id, 'province_id' => $user->province_id,
'province_name' => $user->province_fa, 'province_name' => $user->province_fa,
'city_id' => $user->city_id ?? null,
'city_name' => $user->city_fa ?? null,
'edare_shahri_id' => $user->edarate_shahri_id ?? null, 'edare_shahri_id' => $user->edarate_shahri_id ?? null,
'edare_shahri_name' => $user->edarate_shahri_name ?? null, 'edare_shahri_name' => $user->edarate_shahri_name ?? null,
'zone' => $zone, 'zone' => $zone,

View File

@@ -51,6 +51,8 @@ class ViolationManagementController extends Controller
'username' => $user->username, 'username' => $user->username,
'province_id' => $user->province_id, 'province_id' => $user->province_id,
'province_name' => $user->province_fa, 'province_name' => $user->province_fa,
'city_id' => $user->city_id ?? null,
'city_name' => $user->city_fa ?? null,
'edare_shahri_id' => $user->edarate_shahri_id ?? null, 'edare_shahri_id' => $user->edarate_shahri_id ?? null,
'edare_shahri_name' => $user->edarate_shahri_name ?? null, 'edare_shahri_name' => $user->edarate_shahri_name ?? null,
'zone' => $zone, 'zone' => $zone,