Add a reference to the skin name in the templates to make it easier to create and modify skins
This commit is contained in:
@@ -1,17 +1,16 @@
|
||||
@extends('layouts.default.app')
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'Pilots')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<h2 class="description">pilots</h2>
|
||||
@include('layouts.default.users.table')
|
||||
@include("layouts.${SKIN_NAME}.users.table")
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12 text-center">
|
||||
{{ $users->links('layouts.default.pagination.default') }}
|
||||
{{ $users->links("layouts.${SKIN_NAME}.pagination.default") }}
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
Reference in New Issue
Block a user