@extends('page') @section('content')
@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@if($message = Session::get('success')) @endif
@if($order_product_details->products->product_code !='')
{{$order_product_details->products->product_code}}
@endif @if($order_product_details->products->product_name !='')
|
{{$order_product_details->products->product_name}}
@endif @if($order_product_details->products->brand_name !='')
|
{{$order_product_details->products->brand_name}}
|
@endif @if($order_product_details->products->model_number !='')
{{$order_product_details->products->model_number}}
@endif @if($order_product_details->products->category)
|
{{$order_product_details->products->category->category}}
@endif
{{$order_product_details->products->description}}
@if($order_product_details) @foreach($order_product_details->batches as $dkey => $details) @endforeach
Batch Start NO End NO NO of Labels Status
{{$details->batch_id }} {{$details->start_number }} {{$details->start_number + $details->label_count -1 }} {{$details->label_count }}
@endif
@endsection