@extends('layouts.layoutMaster')
@section('title', __('Basic Accounting Dashboard'))
@section('vendor-style')
@vite([
'resources/assets/vendor/libs/apex-charts/apex-charts.scss'
])
@endsection
@section('vendor-script')
@vite([
'resources/assets/vendor/libs/apex-charts/apexcharts.js'
])
@endsection
@section('content')
{{ __('Total Income') }}
{{ __('Total Expenses') }}
{{ __('Net Balance') }}
{{ __('Transactions') }}
| {{ __('Date') }} | {{ __('Description') }} | {{ __('Category') }} | {{ __('Type') }} | {{ __('Amount') }} |
|---|---|---|---|---|
| {{ \App\Helpers\FormattingHelper::formatDate($transaction->transaction_date) }} | {{ $transaction->description }} | {{ $transaction->category->name }} | {{ __(ucfirst($transaction->type)) }} | {{ $transaction->type === 'income' ? '+' : '-' }}{{ \App\Helpers\FormattingHelper::formatCurrency($transaction->amount) }} |
| {{ __('No transactions found') }} | ||||