@extends('layouts.config') @section('page-title', 'Działy') @section('content') @if ($errors->any())
{{ $errors->first() }}
@endif @if (session('success'))
{{ session('success') }}
@endif

Lista działów

Dodaj dział
@forelse ($departments as $department) @empty @endforelse
Nazwa Kod Nadrzędny Miejscowość E-mail Telefon Akcje
{{ $department->name }} {{ $department->code }} {{ optional($department->parent)->name }} {{ $department->city }} {{ $department->email }} {{ $department->phone }} Dodaj pracowników Edytuj
@csrf @method('DELETE')
Brak zdefiniowanych działów.
@endsection