commit
dc12b1111d
Binary file not shown.
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
BIN
public/img/empty_pages/reconciliations.png
Normal file
BIN
public/img/empty_pages/reconciliations.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
public/img/empty_pages/taxes.png
Normal file
BIN
public/img/empty_pages/taxes.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
public/img/empty_pages/transfers.png
Normal file
BIN
public/img/empty_pages/transfers.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
@ -198,6 +198,9 @@ return [
|
||||
'bills' => 'Bills can be one time or recurring. They indicate what you owe your vendors for the products or services you purchase.',
|
||||
'payments' => 'Payment is a paid expense transaction. It can be an independent record (i.e. food receipt) or attached to a bill.',
|
||||
'vendors' => 'Vendors are required if you want to create bills. You can see the balance you owe and filter reports by the vendor.',
|
||||
'transfers' => 'Sometimes you may want to transfer money from one account to another.',
|
||||
'taxes' => 'The following fields are displayed as blank to be filled, some are required and some not. Those marked with red star are required.',
|
||||
'reconciliations' => 'Bank reconciliation is a process performed to ensure that your company bank records are also correct.',
|
||||
],
|
||||
|
||||
];
|
||||
|
@ -9,6 +9,7 @@
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
@if ($reconciliations->count())
|
||||
<div class="card">
|
||||
<div class="card-header border-bottom-0" :class="[{'bg-gradient-primary': bulk_action.show}]">
|
||||
{!! Form::open([
|
||||
@ -83,6 +84,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@else
|
||||
@include('partials.admin.empty_page', ['page' => 'reconciliations', 'docs_path' => 'banking/reconciliations'])
|
||||
@endif
|
||||
@endsection
|
||||
|
||||
@push('scripts_start')
|
||||
|
@ -9,6 +9,7 @@
|
||||
@endpermission
|
||||
|
||||
@section('content')
|
||||
@if ($transfers->count())
|
||||
<div class="card">
|
||||
<div class="card-header border-bottom-0" :class="[{'bg-gradient-primary': bulk_action.show}]">
|
||||
{!! Form::open([
|
||||
@ -75,6 +76,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@else
|
||||
@include('partials.admin.empty_page', ['page' => 'transfers', 'docs_path' => 'banking/transfers'])
|
||||
@endif
|
||||
@endsection
|
||||
|
||||
@push('scripts_start')
|
||||
|
@ -9,6 +9,7 @@
|
||||
@endpermission
|
||||
|
||||
@section('content')
|
||||
@if ($taxes->count())
|
||||
<div class="card">
|
||||
<div class="card-header border-bottom-0" :class="[{'bg-gradient-primary': bulk_action.show}]">
|
||||
{!! Form::open([
|
||||
@ -85,6 +86,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@else
|
||||
@include('partials.admin.empty_page', ['page' => 'taxes', 'docs_path' => 'settings/taxes'])
|
||||
@endif
|
||||
@endsection
|
||||
|
||||
@push('scripts_start')
|
||||
|
Loading…
x
Reference in New Issue
Block a user