@extends('layouts.app') @section('title','Expense Claims') @section('content')
@forelse($claims as $item)@empty@endforelse
NumberEmployeeDateAmountStatus
{{ $item->number ?? '—' }}{{ $item->employee->full_name ?? '—' }}{{ $item->date ?? '—' }}{{ $item->total_amount ?? '—' }}{{ $item->status ?? '—' }}
No records found
@endsection