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