@extends('layouts.app') @section('title') Payment Detail @stop @section('breadcrumb') @stop @section('content')

Bill : BILL-00{{$expense->id}}


@if($expense->status == true) @else @endif
Vendor {{$expense->vendor->name}}
Expense Name {{$expense->category->name}}
Due Amount {{$expense->amount}}
Bill Date {{date('d-m-Y', strtotime($expense->billed_at)) }}
Due Date {{date('d-m-Y', strtotime($expense->due_at)) }}
StatusPAIDUNPAID
Notes {{$expense->notes}}
Expense Image user-img
Updated at {{$expense->updated_at}}
Created at {{$expense->created_at}}
@stop