@extends('layouts.layout-2')
@section('content')
{{ __('Authoren') }}
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| |
{{__('Name')}} |
{{__('Beschreibung')}} |
|
@foreach($contents as $value)
|
|
{{ $value->name }} |
{{ substr($value->description, 0, 50) }} ... |
|
@endforeach
@endsection