@extends('layouts.app')
@section('title',$meta['plural'])
@section('breadcrumb')
@endsection
@section('content')
{{ $meta['plural'] }}
@if (count($contacts) > 0)
@include('contact._index')
@else
Keine {{ $meta['plural'] }} eingetragen!
@endif
@include('components.button_add',['action' => route('contact.create')])
@endsection