@extends('layouts.admin') @section('page-title') {{__('Account Statement Summary')}} @endsection @push('script-page') @endpush @section('breadcrumb')
{{__('Date')}} | {{__('Amount')}} | {{__('Description')}} |
---|---|---|
{{ Auth::user()->dateFormat($revenue->date) }} | {{ Auth::user()->priceFormat($revenue->amount) }} | {{$revenue->description}} |
{{ Auth::user()->dateFormat($payments->date) }} | {{ Auth::user()->priceFormat($payments->amount) }} | {{!empty($payments->description)?$payments->description:'-'}} |