akaunting/resources/views/partials/admin/empty_page.blade.php

17 lines
900 B
PHP
Raw Normal View History

2019-12-12 19:15:20 +03:00
<div class="card">
2020-01-22 19:03:34 +03:00
<div class="row align-items-center">
<div class="col-xs-12 col-sm-6 text-center p-5">
<img class="blank-image" src="{{ asset('public/img/empty_pages/' . $page . '.png') }}" alt="@yield('title')"/>
2020-01-22 19:03:34 +03:00
</div>
2019-12-12 19:15:20 +03:00
2020-01-22 19:03:34 +03:00
<div class="col-xs-12 col-sm-6 text-center p-5">
2020-10-22 15:42:02 +03:00
<p class="text-justify description">{!! trans('general.empty.' . $page) !!} {!! trans('general.empty.documentation', ['url' => 'https://akaunting.com/docs/user-manual/' . $docs_path]) !!}</p>
2020-04-22 12:48:51 +03:00
2020-01-22 19:03:34 +03:00
<a href="{{ route($page . '.create') }}" class="btn btn-success header-button-top float-right mt-4">
2020-10-22 15:42:02 +03:00
<span class="btn-inner--icon"><i class="fas fa-plus"></i></span>
<span class="btn-inner--text">{{ trans('general.title.create', ['type' => trans_choice('general.' . $page, 1)]) }}</span>
2020-01-22 19:03:34 +03:00
</a>
2019-12-12 19:15:20 +03:00
</div>
</div>
</div>