@extends('layouts.admin')
@section('title','Erinnerung')
@section('content')
@foreach($categories as $key => $label)
@php $group = $articles->get($key, collect()) @endphp
{{ $label }}
@forelse($group as $a)
{{ $a->icon }}
{{ $a->title }}
@empty
Noch keine Artikel.
@endforelse
@endforeach
@endsection