@extends('layouts.default') @section('content') @include('select2') @include('modal')
Gate Pass List
 
@if(Session::has('dataInsert'))
{{ Session::get('dataInsert') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
 
@php $counter = 1; @endphp @forelse($records as $row) @empty @endforelse
S.No Gate Pass No Date SO No Customer Vehicle No Driver Action
{{ $counter++ }} {{ strtoupper($row->gate_pass_no) }} {{ \App\Helpers\CommonHelper::changeDateFormat($row->gate_pass_date) }} {{ strtoupper($row->so_no) }} {{ strtoupper($row->customer_name ?? '') }} {{ strtoupper($row->vehicle_no ?? '') }} {{ strtoupper($row->driver_name ?? '') }}
No gate pass found.
@endsection