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