@extends('layouts.admin') @section('title','Erinnerung') @section('content')

Erinnerungs-Artikel

+ Neuer Artikel
@foreach($categories as $key => $label) @php $group = $articles->get($key, collect()) @endphp

{{ $label }}

@forelse($group as $a)
{{ $a->icon }} {{ $a->title }}
Bearbeiten
@csrf @method('DELETE')
@empty
Noch keine Artikel.
@endforelse
@endforeach @endsection