forked from projects/thebadspace
7151314122
Added additional pages About, Listings, and Location as well as implementing the corresponding functionality for those pages to be able to pull the data they need from the DB. Also continued layout clean up and adjusted some gloabal font sizing settings
20 lines
633 B
PHP
20 lines
633 B
PHP
@extends('frame')
|
|
@section('title', 'The Bad Space|Listings')
|
|
@section('main-content')
|
|
@parent
|
|
<section>
|
|
<article>
|
|
<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 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 |