@extends('layouts.app') @section('content')

Consignments

@if (session()->has('success'))
{!! session()->get('success')!!}
@endif
{{--
--}} {{-- --}} {{--
--}} {{--
--}}
@error('office_id') {{ $message }} @enderror
{{--
--}}
{{ 'Reset' }}
@php $index = $consignments->firstItem() @endphp @foreach($consignments as $consignment) @if(request()->input('consg_number')) @else @endif @endforeach
# Consignment Numbers Office Type Office Id Sheet Qty. Date Total Used Action
{{ $index++ }}{{ $consignment->minConsgNum }}{{ $consignment->minConsgNum.' - '. substr($consignment->maxConsgNum, -8) }}{{ $consignment->office_type == 'FR' ? 'Partner' : ($consignment->office_type == 'BR' ? 'Branch' : 'Head Office') }} {{ $consignment->office->code }} {{ ceil($consignment->count / 48) }} {{ date('d-m-Y', strtotime($consignment->created_at)) }} {{ $consignment->count }} {{ $consignment->UsedConsignment }}
{!! $consignments->links() !!}
@endsection