Monthly Production Data Inforomation Monthly Production Data
@if (session('message'))
× {{ session('message') }}.
@endif
{{-- buyer Table goes here --}}
Sl# {{ $monthly_production->id }}
Company Name {{ $monthly_production->company_name }}
Year {{ $monthly_production->year }}
Month {{ $monthly_production->month }}
Buyer Name {{ $monthly_production->buyer_name }}
Style Name {{ $monthly_production->style_name }}
PO {{ $monthly_production->po }}
COLOR {{ $monthly_production->color }}
Order QTY {{ number_format($monthly_production->order_qty, 3, ',', ',') }}
Conversion Rate (USD) {{ $monthly_production->conversion_rate }}
CM Cost {{ number_format($monthly_production->cm_cost, 3, ',', ',') }}
SMV {{ $monthly_production->smv }}
Efficiancy {{ $monthly_production->efficiency }}
Spent Minute {{ number_format($monthly_production->spent_minute, 3, ',', ',') }}
Produce minutes {{ number_format($monthly_production->produce_minutes, 3, ',', ',') }}
Average price per pcs (USD) {{ $monthly_production->avg_price_usd }}
Total Sales Value (USD) {{ number_format($monthly_production->sale_in_usd, 3, ',', ',') }}
CPM {{ $monthly_production->cpm }}
Fabric (Booking) KG {{ number_format($monthly_production->fabric_booking_qty, 3, ',', ',') }}
Fabric (Receive) KG {{ number_format($monthly_production->fabric_receive_qty, 3, ',', ',') }}
Fabric (Receive Date) {{ $monthly_production->fabric_receive_date ? \Carbon\Carbon::parse($monthly_production->fabric_receive_date)->format('d-M-Y') : '' }}
Fabrics consumption per Dzn {{ number_format($monthly_production->fabric_cons_per_dz, 3, ',', ',') }}
Total Fabric Used {{ number_format($monthly_production->total_fabric_used, 3, ',', ',') }}
Cutting QTY {{ number_format($monthly_production->cutting_qty, 3, ',', ',') }}
Sewing QTY {{ number_format($monthly_production->sewing_qty, 3, ',', ',') }}
Finishing QTY {{ number_format($monthly_production->finishing_qty, 3, ',', ',') }}
Delivery QTY {{ number_format($monthly_production->delivery_qty, 3, ',', ',') }}
Delivery Date {{ $monthly_production->delivery_date ? \Carbon\Carbon::parse($monthly_production->delivery_date)->format('d-M-Y') : '' }}
Back