@extends('app') @section('title', 'Dashboard') @section('link') @endsection @section('content')
@include('includes._alert')
{{-- SuperAdmin --}} @if (auth()->user()->role->role === 'superAdmin') @include('partials._table_school', ['schools' => $schools]) {{-- End SuperAdmin --}} @else @include('partials._school_data', ['dats' => $effetifs]) @endif
@include('includes._modal_simple') @endsection @section('script') @endsection