@extends('templates.app') @section('container')
+ Tambah
@foreach ($reimbursement as $re) @endforeach
No. Tanggal Nama Event Kategori Status Jumlah File Actions
{{ $loop->iteration }} {{ $re->tanggal ?? '-' }} {{ $re->user->name ?? '-' }} {{ $re->event ?? '-' }} {{ $re->kategori->name ?? '-' }} {{ $re->status ?? '-' }} Rp {{ number_format($re->jumlah) }} @if($re->file_path) {{ $re->file_name }} @else - @endif @if ($re->status == 'Pending')
@method('delete') @csrf
@endif
{{ $reimbursement->links() }}


@endsection