empty page style added
This commit is contained in:
19
resources/views/partials/admin/empty_page.blade.php
Normal file
19
resources/views/partials/admin/empty_page.blade.php
Normal file
@ -0,0 +1,19 @@
|
||||
<div class="card">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
|
||||
<div class="col-md-6 text-center p-5">
|
||||
<img src="{{ asset('public/img/empty_pages/' . $page . '.png') }}" height="300" alt="@yield('title')"/>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 text-center p-5">
|
||||
<p class="text-justify description">{!! trans('general.empty.' . $page) !!} {!! trans('general.empty.documentation', ['url' => 'https://akaunting.com/docs/user-manual/' . $docs_path]) !!}</p>
|
||||
<a href="{{ route($page . '.create') }}" class="btn btn-success btn-lg btn-icon header-button-top float-right mt-4">
|
||||
<span class="btn-inner--icon text-white"><i class="fas fa-plus"></i></span>
|
||||
<span class="btn-inner--text text-white">{{ trans('general.title.create', ['type' => trans_choice('general.' . $page, 1)]) }}</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user