Quellcode durchsuchen

add project type in custome list controller

ifah
Siti Hajar Ibrahim vor 5 Jahren
Ursprung
Commit
29717ab205
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
  1. 5
    0
      app/Http/Controllers/CustomerService/CustomerController.php

+ 5
- 0
app/Http/Controllers/CustomerService/CustomerController.php Datei anzeigen

@@ -234,6 +234,10 @@ class CustomerController extends Controller
}

$nP = '';
$ptype = '';
if(!empty($f->project_type)){
$ptype = $f->project_type;
}
array_push($nested_data, array(
'formT' => $n1.$i.$f->type_application,
@@ -242,6 +246,7 @@ class CustomerController extends Controller
'phone' => $f->Subscriber->phone1,
'unit' => $unit,
'building' => $building,
'projectT' => $ptype,
'street' => $address,
// 'postcode' => $f->Subscriber->postcode,
// 'city' => $f->Subscriber->city,

Laden…
Abbrechen
Speichern