revered button icon

This commit is contained in:
Cüneyt Şentürk
2020-10-22 15:42:02 +03:00
parent ad1adcd8ec
commit 8f37d8bfc4
48 changed files with 118 additions and 116 deletions

View File

@@ -1,10 +1,14 @@
@section('title', $class->model->name)
@section('new_button')
<a href="{{ url($class->getUrl('print')) }}" target="_blank" class="btn btn-white btn-sm">
{{ trans('general.print') }}
</a>
<a href="{{ url($class->getUrl('export')) }}" class="btn btn-white btn-sm header-button-top">
{{ trans('general.export') }}
</a>
<span>
<a href="{{ url($class->getUrl('print')) }}" target="_blank" class="btn btn-white btn-sm header-button-top">
<span class="fa fa-print"></span> &nbsp;{{ trans('general.print') }}
</a>
</span>
<span>
<a href="{{ url($class->getUrl('export')) }}" class="btn btn-white btn-sm header-button-top">
<span class="fa fa-upload"></span> &nbsp;{{ trans('general.export') }}
</a>
</span>
@endsection