18 lines
532 B
PHP
18 lines
532 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div style="height: 100%;">
|
|
@include('dashboard.sidebar')
|
|
<div style="background: #fcfcfc; padding-bottom: 10px;">
|
|
@include('dashboard.header')
|
|
<div style="overflow: auto; margin-top: 94px; padding-top: 16px; position: relative;">
|
|
@include('dashboard.content')
|
|
@include('dashboard.footer')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('content-body')
|
|
@yield('content-body')
|
|
@endsection |