@extends('layouts.vending') @section('title', 'Mandanten-Übersicht') @section('content')

Mandanten-Übersicht

Wählen Sie einen Mandanten aus, um dessen Snackautomaten zu erkunden.

@if($tenants->count() > 0)
@foreach($tenants as $tenant)
@if($tenant->logo)
{{ $tenant->name }} Logo
@else
{{ strtoupper(substr($tenant->name, 0, 1)) }}
@endif

{{ $tenant->name }}

@if($tenant->description)

{{ $tenant->description }}

@endif
{{ $tenant->vending_machines_count }} Automat{{ $tenant->vending_machines_count !== 1 ? 'en' : '' }}
@if($tenant->public_slug) QR-Code Ansicht @endif Admin Ansicht
@endforeach
@else

Keine Mandanten verfügbar

Derzeit sind keine aktiven Mandanten im System verfügbar.

@endif
@endsection @section('head') @endsection