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

Station Rating Report

@forelse ($data as $item) @empty @endforelse
Transaction Date & Time Card Number Sales Invoice Station Ratings
{{ \Carbon\Carbon::parse($item['date'])->format('M d, Y H:i') }} {{ $item['card_number'] ?? 'N/A' }} {{ $item['invoice'] ?? 'N/A' }} {{ $item['station'] ?? 'N/A' }} {{ $item['rate'] ?? 'N/A' }}
No data found.
@if ($updating)
Loading...
@endif
@endsection