@extends('layouts.app') @section('title') {{ $pageInfo['title'] }} @endsection @section('admin-content')

{{ $pageInfo['title'] }}

Reset
@php use App\Helpers\NextCloudHelper; @endphp

Form Up Country

@include('backend.layouts.partials.messages')
@foreach ($forms as $item) @endforeach
# No Expense Nama Cabang Rayon Tanggal Tujuan Jarak Total Total Approved Account Number Status
{{ $loop->iteration }} {{ $item->expense_number }} {{ $item->user->name }} {{ $item->user->cabang->cabang->name }} {{ $item->rayon->code }} {{ \Carbon\Carbon::parse($item->tanggal)->locale('id')->isoFormat('D MMMM Y') }} {{ $item->tujuan }} {{ $item->jarak }} km {{ number_format($item->total, 0, ',', '.') }} @if ($item->approved_total) {{ number_format($item->approved_total, 0, ',', '.') }} @else - @endif {{ $item->account_number }} @if ($item->status == 'On Progress') {{ $item->status }} @elseif ($item->status == 'Approved' || $item->status == 'Final Approved') {{ $item->status }} @else {{ $item->status }} @endif
@endsection @section('scripts') @endsection