forked from are0h/TheBadSpace
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
660 B
PHTML
19 lines
660 B
PHTML
@extends('frame')
|
|
@section('title', 'The Bad Space|Listings')
|
|
@section('main-content')
|
|
@parent
|
|
<section>
|
|
<article role="list">
|
|
<h2>Page {{$pageNum}}</h2>
|
|
<a href="/listings/{{$prev}}">PREV</a>
|
|
{{$pageNum}} of {{$totalPages}}
|
|
<a href="/listings/{{$next}}">NEXT</a><br />
|
|
@foreach($locations as $location)
|
|
<a role="listitem" href="/location/{{$location->uuid}}">{{$location->name}}</a></a><br />
|
|
@endforeach
|
|
<a href="/listings/{{$prev}}">PREV</a>
|
|
{{$pageNum}} of {{$totalPages}}
|
|
<a href="/listings/{{$next}}">NEXT</a>
|
|
</article>
|
|
</section>
|
|
@endsection |