@extends('layouts.master-vnext') @inject('dateranges', 'App\Services\DateRangePickerService') @section('page-title') {{ $title }} @endsection @section('content')
| Date | Comment | Beginning balance | Debit | Credit | Ending balance | |
|---|---|---|---|---|---|---|
| @date($entry->entered_at) | {{ $entry->comment }} | @currency($entry->beginning_balance) {{ $entry->currency->symbol }} | @if($entry->debit > 0) @currency($entry->debit) {{ $entry->currency->symbol }} @endif | @if($entry->credit > 0) @currency($entry->credit) {{ $entry->currency->symbol }} @endif | @currency($entry->ending_balance) {{ $entry->currency->symbol }} | edit |