@php($title = "FTP Manager") @extends('layouts.main') @section('breadclumbs') @endsection @section('content')
 {{ __('main.create') }}  {{ __('ftp::ftp_accounts.last_error') }}  {{ __('ftp::ftp_commands.commands') }}
@include('components.grid', [ 'modelsList' => $ftpAccounts, 'labels' => [ __('ftp::ftp_accounts.username'), __('labels.host') . ':' . __('labels.port'), __('servers.dedicated_server') ], 'attributes' => [ 'username', ['twoSeparatedValues', ['host', ':', 'port']], 'dedicatedServer.name', ], 'viewRoute' => 'admin.ftp.accounts.show', 'editRoute' => 'admin.ftp.accounts.edit', 'destroyRoute' => 'admin.ftp.accounts.destroy', ]) {!! $ftpAccounts->links() !!} @endsection