@extends('header') @section('title', 'Dashboard') @section('otherConetent') @php $currentURL = request()->path(); function activeMenu($url,$value) { if (strpos($url, $value) !== false) { return true; } else { return false; } } @endphp {{-- Top Part User Profile and logo --}} {{-- Menu part --}} {{-- Content Part --}}
@yield('adminContent') {{-- session check
{{ json_encode(session()->all(), JSON_PRETTY_PRINT) }}
--}}
@endsection