Update skinning with more flexible theme module

This commit is contained in:
Nabeel Shahzad
2018-03-11 18:00:42 -05:00
parent 03c15473b9
commit f05e37767f
50 changed files with 216 additions and 80 deletions
@@ -1,16 +1,16 @@
@extends("layouts.${SKIN_NAME}.app")
@extends('app')
@section('title', 'Pilots')
@section('content')
<div class="row">
<div class="col-md-12">
<h2 class="description">pilots</h2>
@include("layouts.${SKIN_NAME}.users.table")
@include("users.table")
</div>
</div>
<div class="row">
<div class="col-12 text-center">
{{ $users->links("layouts.${SKIN_NAME}.pagination.default") }}
{{ $users->links("pagination.default") }}
</div>
</div>
@endsection