Job No |
|
Buyer |
@php
$buyers = App\Models\Buyer::all()->pluck('name', 'id');
@endphp
|
Style |
@php
$styles = DB::table('jobs')->select('style')->distinct()->get();
@endphp
|
PO |
@php
$pos = DB::table('jobs')->select('po')->distinct()->get();
@endphp
|
Department |
@php
$departments = DB::table('jobs')
->select('department')
->distinct()
->get();
@endphp
|
Item |
|
Destination |
|
Order Quantity |
|