IMMREX7
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
@include('layouts.partial.head')
<link rel="stylesheet" type="text/css" href="{{asset('dist/steps/jquery.steps.css')}}">
<link rel="stylesheet" href="{{asset('dist/css/ecommerce.css')}}">
<style>
@if(Request::is('student/shop'))
.dropdown-menu.pullDown{
top: 40px !important;
left: -68px !important;
}
@endif
.badge-cart:after{
content:attr(value);
font-size:12px;
color: #fff;
background: black;
border-radius:50%;
padding: 0 5px;
position:relative;
left:-8px;
top:-10px;
opacity:0.9;
}
</style>
<body class="theme-purple">
<!-- Page Loader -->
<div class="page-loader-wrapper">
<div class="loader">
<div class="m-t-30"><img class="zmdi-hc-spin" src="{{asset('dist/images/logo.svg')}}" width="48" height="48" alt="schholMIS"></div>
<p>Please wait...</p>
</div>
</div>
<!-- Overlay For Sidebars -->
<div class="overlay"></div>
<!-- Top Bar -->
@include('students.student_nav')
<!-- Right Sidebar -->
@include('layouts.partial.rightsidebar')
<section class="content">
<div class="block-header">
<div class="row">
<div class="col-lg-7 col-md-6 col-sm-12">
<?php
$idstdsession = Session::get('idStudent');
$student = \App\AdmEntry::where('idStudent', '=', $idstdsession)->first();
$school = \App\School::where('idSchool', '=', $student->idSchool)->first();
?>
@if($school != null)
<h2>{{$school->schoolName}}
<small>Welcome to {{$school->schoolName}}</small>
</h2>
@endif
</div>
<div class="col-lg-5 col-md-6 col-sm-12">
<!-- <ul class="breadcrumb float-md-right">
<li class="breadcrumb-item"><a href="{{url('/')}}"><i class="zmdi zmdi-home"></i>School MIS</a></li>
<li class="breadcrumb-item active">Dashboard</li>
</ul>-->
</div>
</div>
</div>
<div class="container-fluid">
@if(session()->has('message'))
<div class="alert alert-danger">
{{ session()->get('message') }}
</div>
@endif
@include('flash::message')
@yield('content')
@include('layouts.partial.footer')
</div>
</section>
</div>
<!-- Scripts -->
@include('layouts.partial.script')
@yield('script')
</body>
</html>
Copyright © 2021 -