@extends('admin.layout.master') @section('title','INDENT MANAGEMENT') @section('custom_style') @endsection @section ('content')
| # | Date | Indent No | Finished Product | By | Store | Qty | Finished Qty | Staus | Action | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ ($key+1) }} | {{ date('d-m-Y h:i A',strtotime($indent->created_at)) }} | {{ $indent->indent_no }} | {{ $indent->product?$indent->product->name_eng:'N/A' }} | {{ $indent->madeBy->name }} | {{ $indent->toStore->name_eng }} | {{ $indent->indent_qty }} | {{ $indent->finished_qty }} | {{$statusArray[$indent->status]}} |
{{-- --}}
@if($indent->status>3)
{{--
--}}
@if(checkAuthPermission('issue.print'))
{{$indent->finished_qty?'Production':'Issue'}}
@endif
{{-- --}}
@endif
|