Skip to content

Instantly share code, notes, and snippets.

@didwiz
Created July 8, 2020 04:57
Show Gist options
  • Save didwiz/950f45b7f5d3a1b58579c574d133c626 to your computer and use it in GitHub Desktop.
Save didwiz/950f45b7f5d3a1b58579c574d133c626 to your computer and use it in GitHub Desktop.
layouts.dashboard.default
@extends('layouts.app')
@section('content')
<div x-data="{ open: false }" class="h-screen flex overflow-hidden bg-gray-100">
<!-- Off-canvas menu for mobile -->
@include('layouts.dashboard.mobile')
<!-- mobile view end -->
<!-- Static sidebar for desktop -->
@include('layouts.dashboard.partials.desktop-side-bar')
<!-- dashboard center -->
@include('layouts.dashboard.desktop')
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment