@include('layout.header')
@include('layout.navbar') @include('layout.breadscrum')
@include('layout.sidebar')

{{__('quantity.table_title')}}

@if(\App\Http\Controllers\Helper\GlobalController::user_can(Auth::user()->role_id, ['create_quantity'])) @endif

{{-- --}} @foreach($quantities as $k=>$quantity) {{-- --}} @endforeach
{{__('quantity.table_no')}} {{__('quantity.table_action')}} {{__('quantity.table_name')}}{{__('quantity.table_status')}}
{{($k+1) + (($_GET['page'] ?? 1) * 20) - 20}}
@if(\App\Http\Controllers\Helper\GlobalController::user_can(Auth::user()->role_id, ['update_quantity'])) @endif @if($quantity->record_status_id==0) @else @if(\App\Http\Controllers\Helper\GlobalController::user_can(Auth::user()->role_id, ['delete_quantity'])) @endif @endif
{{$quantity->quantity_name}}--}} {{-- --}} {{--
{!! $quantities->links('pagination.custom') !!}
@include('layout.footer')
@include('layout.common_script')