Merge pull request #1178 from batuhawk/master
Forgotten code line spaces
This commit is contained in:
commit
548210d613
@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1"/>
|
||||
|
||||
<title>@yield('title') - @setting('company.name')</title>
|
||||
|
||||
|
@ -1,31 +1,29 @@
|
||||
@stack('header_start')
|
||||
<div id="header" class="header pb-6">
|
||||
<div class="container-fluid content-layout">
|
||||
<div class="header-body">
|
||||
<div class="row py-4 align-items-center">
|
||||
<div class="col-sm-4 col-md-5 align-items-center">
|
||||
<h2 class="d-inline-flex mb-0 long-texts">@yield('title')</h2>
|
||||
@yield('dashboard_action')
|
||||
</div>
|
||||
<div class="col-sm-8 col-md-7">
|
||||
<div class="text-right">
|
||||
@yield('new_button')
|
||||
<div id="header" class="header pb-6">
|
||||
<div class="container-fluid content-layout">
|
||||
<div class="header-body">
|
||||
<div class="row py-4 align-items-center">
|
||||
<div class="col-sm-4 col-md-5 align-items-center">
|
||||
<h2 class="d-inline-flex mb-0 long-texts">@yield('title')</h2>
|
||||
@yield('dashboard_action')
|
||||
</div>
|
||||
<div class="col-sm-8 col-md-7">
|
||||
<div class="text-right">
|
||||
@yield('new_button')
|
||||
|
||||
@permission('read-modules-home')
|
||||
@if (!empty($suggestion_modules))
|
||||
@foreach($suggestion_modules as $s_module)
|
||||
<span>
|
||||
<a href="{{ url($s_module->action_url) . '?' . http_build_query((array) $s_module->action_parameters) }}" class="btn btn-white btn-sm header-button-bottom" target="{{ $s_module->action_target }}"><span class="fa fa-rocket"></span> {{ $s_module->name }}</a>
|
||||
</span>
|
||||
@endforeach
|
||||
@endif
|
||||
@endpermission
|
||||
|
||||
@stack('header_button')
|
||||
@permission('read-modules-home')
|
||||
@if (!empty($suggestion_modules))
|
||||
@foreach($suggestion_modules as $s_module)
|
||||
<span>
|
||||
<a href="{{ url($s_module->action_url) . '?' . http_build_query((array) $s_module->action_parameters) }}" class="btn btn-white btn-sm header-button-bottom" target="{{ $s_module->action_target }}"><span class="fa fa-rocket"></span> {{ $s_module->name }}</a>
|
||||
</span>
|
||||
@endforeach
|
||||
@endif
|
||||
@endpermission
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stack('header_end')
|
||||
|
@ -25,9 +25,7 @@
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
|
||||
@stack('pagination_start')
|
||||
@stack('pagination_start')
|
||||
@php
|
||||
$review_first_item = count($reviews->data) > 0 ? ($reviews->current_page - 1) * $reviews->per_page + 1 : null;
|
||||
$review_last_item = count($reviews->data) > 0 ? $review_first_item + count($reviews->data) - 1 : null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user