Job No |
@php
$job_no = App\Models\Job::max('id') + 1;
$job_no =
'FAL-' . date('y') . '-' . str_pad($job_no, 6, '0', STR_PAD_LEFT);
@endphp
|
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 |
|