kuvia/resources/views/tenant/theme.blade.php

22 lines
535 B
PHP
Raw Normal View History

2021-01-27 00:11:16 +00:00
@extends('layout/template')
@section('content')
<h1>Themes</h1>
<table class="table table-striped">
<tr>
<th>Name</th>
<th>Vorschau</th>
<th>Action</th>
</tr>
@foreach($themes as $theme)
<tr>
<td>{{ $theme->name }}</td>
<td><a target="_blank" href="/{{ $current_tenant->url }}?theme={{ $theme->name }}">Vorschau</a></td>
<td>Auswählen</td>
</tr>
@endforeach
</table>
@endsection