@extends('layouts.layout-2')
@section('content')
{{ __('Inhalte') }} {{ __('Allgemein') }}
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| |
{{__('Name')}} |
{{__('Type')}} |
{{__('Inhalt')}} |
|
@foreach($contents as $value)
|
|
{{ $value->name }} |
{{ $value->getFieldName() }} |
{{ $value->getPreviewContent() }} |
|
@endforeach
@endsection