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

{{ $pageInfo['title'] }}

{{-- submit button --}}
@php use App\Helpers\NextCloudHelper; @endphp

Form Meeting & Seminar

@include('backend.layouts.partials.messages')
@foreach ($forms as $item) @endforeach
# No Expense Nama Cabang Tanggal Allowance Transport Ankot Hotel Total Total Approved Account Number Status
{{ $loop->iteration }} {{ $item->expense_number }} {{ $item->user->name }} {{ $item->user->cabang->cabang->name }} {{ \Carbon\Carbon::parse($item->created_at)->locale('id')->isoFormat('D MMMM Y') }} {{ number_format($item->allowance, 0, ',', '.') }} {{ number_format($item->transport_ankot, 0, ',', '.') }} {{ number_format($item->hotel, 0, ',', '.') }} {{ number_format($item->total, 0, ',', '.') }} {{ number_format($item->approved_total, 0, ',', '.') }} {{ $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