@extends('admin.layouts.layouts') @section('title', 'View Expanse Request') @section('content')
View Expanse Request
← Back
Employee Name:
{{ $showDetails->employeeMaster->employee_name ?? '-' }}
Expanse Type:
{{ $showDetails->expanseType->name ?? '' }}
Expanse Sub Type:
{{ $showDetails->expanseSubType->name ?? '' }}
Transaction Type:
{{ $showDetails->transaction_type ?? '-' }}
Created At:
{{ $showDetails->created_at->format('d-m-Y h:i A') ?? '' }}
Status:
Date:
{{ date('d-m-Y', strtotime($showDetails->date)) ?? '-' }}
Amount:
{{ $showDetails->amount ?? '-' }}
Mode Of Payment:
{{ $showDetails->mode_of_payment ?? '-' }}
Remark:
{{ $showDetails->remark ?? '-' }}
Created By:
{{ $showDetails->users->name ?? '-' }}
Document:
@if ($showDetails->document) @else No document available @endif
@endsection @section('page-js') @endsection