2023-08-18 23:34:53 +02:00
|
|
|
@extends('frame')
|
|
|
|
|
|
|
|
@section('title', 'The Bad Space | Location Info')
|
|
|
|
|
|
|
|
@section('main-content')
|
|
|
|
@parent
|
|
|
|
<section>
|
|
|
|
<article>
|
|
|
|
<h2>Description</h2>
|
|
|
|
{{$location->description}}<br />
|
|
|
|
<h2>Screens</h2>
|
|
|
|
@foreach($images as $image)
|
|
|
|
<a href="/{{$image->path}}" class="location-image" style="background: url(/{{$image->path}}) no-repeat center center / cover #fc6399" />
|
|
|
|
</a>
|
|
|
|
@endforeach
|
|
|
|
<br />UPDATED : {{$updated}}
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
@endsection
|