@extends('apex-layouts.main') @section('title','Expense Types') @section('header-right') Total:  {{ $expenseTypes->total() }} @endsection @section('content')
@foreach($expenseTypes as $invoice) @endforeach
# Title Created
{{$invoice->id}} {{$invoice->title}}

{{\App\helpers\ViewCommonHelper::getDateFormat($invoice->created_at)}}

{{\App\helpers\ViewCommonHelper::getDateFormat($invoice->modified_ats)}}

@if($expenseTypes->total() > $expenseTypes->perPage()) @endif
@endsection