@extends('layouts.dashboard') @section('title', 'Départements - Admin Sciences Afrique') @section('page-title', 'Départements') @section('page-subtitle', 'Gestion des départements et rattachement aux facultés.') @section('content')
Ajouter un département
@foreach($departments as $department) @endforeach
Nom Faculté Cours Créé Actions
{{ $department->name }} {{ optional($department->faculty)->name }} {{ $department->courses()->count() }} {{ optional($department->created_at)->format('d/m/Y') }}
@csrf @method('DELETE')
{{ $departments->links() }}
@endsection