@extends('store.layout.app') @section ('content')
@if (session()->has('success'))
@if(is_array(session()->get('success')))
    @foreach (session()->get('success') as $message)
  • {{ $message }}
  • @endforeach
@else {{ session()->get('success') }} @endif
@endif @if (count($errors) > 0) @if($errors->any()) @endif @endif

{{$title}}

{{csrf_field()}}




@if(count($ord)>0) @php $i=1; @endphp @foreach($ord as $ords) @php $i++; @endphp @endforeach @else @for ($i = 1; $i < 3; $i++) @endfor @endif
# {{ __('keywords.Product')}} {{ __('keywords.Name')}} {{ __('keywords.Item')}} {{ __('keywords.Quantity')}} {{ __('keywords.Requirement')}}
{{$i}} {{$ords->product_name}} @foreach($det as $dets) @if($dets->product_id == $ords->product_id) {{$dets->quantity}}{{$dets->unit}} * {{$dets->count* $dets->sumqty}}({{$dets->quantity*$dets->count*$dets->sumqty}}{{$dets->unit}}) | @endif @endforeach
{{ __('keywords.No data found')}}
@endsection