@extends('layouts.app', ['title' => 'Baustellen']) @section('content')

Baustellen

@if(session('msg'))
{{ session('msg') }}
@endif
@forelse($baustellen as $b) @empty @endforelse
Name Status Fahrzeuge Notiz
{{ $b->name }} {{ ucfirst($b->status) }} {{ $b->vehicles_count }} {{ Str::limit($b->notiz, 60) }}
Keine Baustellen vorhanden
{{-- Modal: Neu --}} {{-- Edit Modals --}} @foreach($baustellen as $b) @endforeach @endsection