@extends('layouts.master') @section('css') @section('title') {{ __('home.manufacturing_reports') }} @stop @endsection @section('content')
| # | {{ __('home.order_number') }} | {{ __('home.finished_product') }} | {{ __('home.planned_qty') }} | {{ __('home.produced_qty') }} | {{ __('home.order_status') }} | {{ __('home.actions') }} |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $order->order_number }} | {{ $order->finishedProduct->product_name ?? $order->finishedProduct->name ?? '---' }} | {{ (float) $order->planned_quantity }} | {{ (float) ($order->produced_quantity ?? 0) }} | @if($order->status == 'completed') {{ __('home.status_completed') }} @else {{ __('home.status_in_progress') }} @endif | {{ __('home.order_cost_report') }} |