@extends('layouts.vending') @section('title', 'Mandant auswählen') @section('content')

LMIV Snackautomat

Wählen Sie einen Mandanten aus

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

{{ $tenant->name }}

{{ $tenant->slug }}

@if($tenant->description)

{{ $tenant->description }}

@endif
{{ $tenant->users_count }}
Benutzer
{{ $tenant->vending_machines_count }}
Automaten
{{ $tenant->products_count }}
Produkte
@endforeach
Mandanten verwalten
@csrf
@endsection