@extends('backend.dashboard.layout.master') @section('content')

Overview

@php use App\Models\User; $user = Auth::user(); @endphp
@if ($req == 'Overview' || $req == null) @include('backend.dashboard.User-Profile.overview-parital') @elseif ($req == 'Attendacne') @include('backend.dashboard.User-Profile.attendance-partial') @elseif ($req == 'Documents') @include('backend.dashboard.User-Profile.document-partial') @endif
@endsection