@extends('layouts.app', ['breadcrumbs' => [ ['href'=> route('dashboard'), 'text'=> 'Dashboard', 'active'], ]]) @section('title', __('Dashboard')) @section('page_heading', 'Dashboard') @section('content') @can('set school') @livewire('set-school') @endcan @livewire('dashboard-data-cards') @livewire('set-academic-year') @if (auth()->user()->hasRole('student'))

Download Profile

@endif @can('read notice') @livewire('list-notices-table') @endcan @if (auth()->user()->hasRole('applicant')) @livewire('application-history', ['applicant' => auth()->user()]) @endif @can('read applicant') @livewire('list-account-applications-table') @endcan @endsection