@extends('layouts.app') @section('title','Gate Passes') @section('page-title','Gate Passes') @section('content')
@forelse($gatePasses as $gp) @empty @endforelse
Pass NoDateDirectionItemCarrierAuthorized ByStatus
{{ $gp->pass_number }} {{ $gp->date->format('d/m/Y') }} {{ strtoupper($gp->direction) }} {{ Str::limit($gp->item_description,30) }} ({{ $gp->quantity }}) {{ $gp->carrier_name }} {{ $gp->authorized_by }} {{ $gp->status }} @if($gp->status==='pending')
@csrf @method('PATCH')
@endif
No gate passes.
@endsection