@extends('layouts.main') @section('page-title') {{ __('Account Statement Summary') }} @endsection @section('page-breadcrumb') {{ __('Report') }}, {{ __('Account Statement Summary') }} @endsection @push('scripts') @endpush @section('page-action')
@endsection @section('content'){{__('Date')}} | {{__('Amount')}} | {{__('Description')}} |
---|---|---|
{{ company_date_formate($revenue->date) }} | {{ currency_format_with_sym($revenue->amount) }} | {{$revenue->description}} |
{{ company_date_formate($payments->date) }} | {{ currency_format_with_sym($payments->amount) }} | {{!empty($payments->description)?$payments->description:'-'}} |