@extends('layouts.vending') @section('title', 'Mandanten verwalten') @section('content')

Mandanten verwalten

Übersicht aller Mandanten im System

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($tenants->count() > 0)
@foreach($tenants as $tenant)
@if($tenant->logo) {{ $tenant->name }} @else
@endif

{{ $tenant->name }}

{{ $tenant->slug }}

@if($tenant->is_active) Aktiv @else Inaktiv @endif
@if($tenant->description)

{{ $tenant->description }}

@endif
{{ $tenant->users_count }}
Benutzer
{{ $tenant->vending_machines_count }}
Automaten
{{ $tenant->products_count }}
Produkte
Auswählen Bearbeiten @if(!$tenant->is_active) @else @endif
Erstellt: {{ $tenant->created_at->format('d.m.Y H:i') }} @if($tenant->domain) • Domain: {{ $tenant->domain }} @endif
@endforeach
{{ $tenants->links() }}
@else

Keine Mandanten

Beginnen Sie mit der Erstellung des ersten Mandanten.

@endif
@endsection