@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')
| Nom |
Faculté |
Cours |
Créé |
Actions |
@foreach($departments as $department)
| {{ $department->name }} |
{{ optional($department->faculty)->name }} |
{{ $department->courses()->count() }} |
{{ optional($department->created_at)->format('d/m/Y') }} |
|
@endforeach
{{ $departments->links() }}
@endsection