Merge pull request #1239 from batuhawk/master

Blank pages updated
This commit is contained in:
Batuhan Baş 2020-02-09 13:15:09 +03:00 committed by GitHub
commit dc12b1111d
8 changed files with 217 additions and 202 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -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.',
],
];

View File

@ -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')

View File

@ -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')

View File

@ -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')