78 lines
No EOL
3.2 KiB
PHP
Executable file
78 lines
No EOL
3.2 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
|
|
<h4 class="font-weight-bold py-3 mb-1">
|
|
{{ __('Reiseführer') }}
|
|
</h4>
|
|
|
|
<div class="card">
|
|
<div class="card-datatable table-responsive py-2">
|
|
<div class="mr-4 mb-2 text-right">
|
|
<a href="{{ route('cms_travel_magazine_detail', ['new']) }}" class="btn btn-sm btn-primary">Neuen Eintrag anlegen</a>
|
|
</div>
|
|
<table class="datatables-travel_magazine table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th style="max-width: 60px;"> </th>
|
|
<th>{{__('Name')}}</th>
|
|
<th>{{__('slug')}}</th>
|
|
<th>{{__('Langer Text')}}</th>
|
|
<th>{{__('sichtbar')}}</th>
|
|
<th>#</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($travel_magazines as $value)
|
|
<tr>
|
|
<td>
|
|
<a href="{{ route('cms_travel_magazine_detail', [$value->id]) }}" class="btn icon-btn btn-sm btn-primary">
|
|
<span class="far fa-edit"></span>
|
|
</a>
|
|
</td>
|
|
<td><a href="{{ route('cms_travel_magazine_detail', [$value->id]) }}">{{ $value->name }}</a></td>
|
|
<td>{{ $value->slug }}</td>
|
|
<td data-sort="{{ $value->scope }}">
|
|
@if($value->scope)
|
|
<span class="badge badge-pill badge-success"><i class="far fa-check"></i></span>
|
|
@else
|
|
<span class="badge badge-pill badge-danger"><i class="far fa-times"></i></span>
|
|
@endif
|
|
</td>
|
|
<td data-sort="{{ $value->active }}">
|
|
@if($value->active)
|
|
<span class="badge badge-pill badge-success"><i class="far fa-check"></i></span>
|
|
@else
|
|
<span class="badge badge-pill badge-danger"><i class="far fa-times"></i></span>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<a class="text-danger" href="{{ route('cms_travel_magazine_delete', [$value->id]) }}" onclick="return confirm('{{__('Wirklich löschen?')}}');"><i class="far fa-trash-alt"></i></a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<div class="mt-4 col">
|
|
<a href="{{ route('cms_travel_magazine_detail', ['new']) }}" class="btn btn-sm btn-primary">Neuen Eintrag anlegen</a>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$( document ).ready(function() {
|
|
$('.datatables-travel_magazine').dataTable({
|
|
"bLengthChange": false,
|
|
"iDisplayLength": 50,
|
|
"language": {
|
|
"url": "/js/German.json"
|
|
},
|
|
});
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
</div>
|
|
|
|
|
|
|
|
@endsection |