10 lines
236 B
PHP
10 lines
236 B
PHP
@extends('layout/template')
|
|
|
|
@section('content')
|
|
<h1>Galleries</h1>
|
|
@foreach($galleries as $gallery)
|
|
<ul>
|
|
<li><a href="/{{ $tenant->url }}/{{ $gallery->url }}">{{ $gallery->name }}</a></li>
|
|
</ul>
|
|
@endforeach
|
|
@endsection
|