modules styles updated

This commit is contained in:
batuhanbas
2020-01-22 15:27:52 +03:00
parent 6e193f704b
commit 211c34e3c7
9 changed files with 23 additions and 20 deletions

View File

@ -10,7 +10,7 @@
@section('content')
@include('partials.modules.bar')
<h2 class="text-primary">{{ $title }}</h2>
<h2>{{ $title }}</h2>
<div class="row">
@if ($modules)
@foreach ($modules->data as $module)
@ -23,13 +23,13 @@
<div class="col-md-6 text-left">
@if ($modules->current_page > 1)
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page - 1 }}" class="btn btn-white btn-sm">{!! trans('pagination.previous') !!}</a>
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page - 1 }}" class="btn btn-white btn-sm button-header-top"><span class="fas fa-arrow-left"></span> &nbsp;{!! trans('pagination.previous') !!}</a>
@endif
</div>
<div class="col-md-6 text-right">
@if ($modules->current_page < $modules->last_page)
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-white btn-sm">{!! trans('pagination.next') !!}</a>
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-white btn-sm button-header-top">{!! trans('pagination.next') !!}&nbsp; <span class="fas fa-arrow-right"></span> </a>
@endif
</div>