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

Validate Excel Data

@php $index = $bookings->firstItem() @endphp @foreach($bookings as $booking) @endforeach
# Name Address Area Pincode City Mobile No. Operations
{{ $index++ }} {{ $booking->receiver_name }} {{ $booking->receiver_add_line_1 ?? '' }} {{ $booking->receiver_add_line_2 ?? '' }} has_error == 1 ?'class=text-danger':'' }}>{{ $booking->pincode->pincode ?? $booking->wrong_pincode }} {{ $booking->receiver_city ?? '' }} {{ $booking->receiver_mobile_number }}
@if(count($bookings) == 0)
No {{ request()->input('has_error') == 0 ? 'accurate': 'inaccurate' }} record found! @if( request()->input('has_error') == 1 ) Go to Accurate Records @endif
@endif
{!! $bookings->appends(request()->query())->links() !!}
{{-- Edit Model--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}}
{{-- --}} {{ 'Continue with accurate records*' }} *All records with errors will be ignored in this operation
@endsection