Browse Source

edit calling created_by method in marketing controller

ifah
Siti Hajar Ibrahim 5 years ago
parent
commit
ed12330328
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/Http/Controllers/DS/MarketingController.php

+ 1
- 1
app/Http/Controllers/DS/MarketingController.php View File

@@ -1638,7 +1638,7 @@ class MarketingController extends Controller
$product = $product->package_name;
}

$created_by = Staff::with('StaffDetail')->find($wo->created_by)->first();
$created_by = Staff::with('StaffDetail')->where("_id",$wo->created_by)->first();
if(empty($created_by)){
$created_by = '';
}

Loading…
Cancel
Save