@extends('layouts.adminapp')
@section('content')
{{-- Process Manger --}}
@php $Slno=0; @endphp
| Slno |
Order No. |
Job Status |
Rack |
Godown |
Actions |
|
|
{{-- @if($result) --}}
@foreach($Orders as $Order)
| {{++$Slno}} |
{{ $Order->id}} |
{{ $Order->status->title}} |
@if($Order->rack)
{{ $Order->rack->title}} |
@else
Not Selected |
@endif
@if($Order->rack)
{{ $Order->rack->godown->title}} |
@else
Not Selected |
@endif
|
{{--
| --}}
|
@endforeach
| Product/Service |
Rate |
Quantity |
Total |
| Grand Total |
|
@endsection