2017-08-26 10:41:33 -04:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
2019-02-03 08:45:45 -05:00
|
|
|
<div class="container small pt-xl">
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-03 08:45:45 -05:00
|
|
|
<h1 class="list-heading">{{ $title }}</h1>
|
|
|
|
|
|
|
|
<div class="book-contents">
|
2021-05-23 08:34:08 -04:00
|
|
|
@include('partials.entity-list', ['entities' => $entities, 'style' => 'detailed'])
|
2019-02-03 08:45:45 -05:00
|
|
|
</div>
|
|
|
|
|
2021-05-23 08:34:08 -04:00
|
|
|
<div class="text-right">
|
|
|
|
@if($hasMoreLink)
|
|
|
|
<a href="{{ $hasMoreLink }}" class="button outline">{{ trans('common.more') }}</a>
|
|
|
|
@endif
|
2016-02-20 13:51:01 -05:00
|
|
|
</div>
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2016-02-20 13:51:01 -05:00
|
|
|
</div>
|
|
|
|
@stop
|