Skip to content

Instantly share code, notes, and snippets.

@jongravois
Created September 24, 2020 20:33
Show Gist options
  • Save jongravois/31ac09ec4bd6a6c78be7fae9483d9bff to your computer and use it in GitHub Desktop.
Save jongravois/31ac09ec4bd6a6c78be7fae9483d9bff to your computer and use it in GitHub Desktop.
@props([
'pageColor' => 'bg-gray-200',
'header' => false
])
<x-app-layout>
<div class="min-h-screen {{ $pageColor }}">
<!-- Navigation -->
<x-navigation.nav-bar />
<!-- Page Heading -->
@if($header)
<header class="bg-white shadow">
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8">
{{ $header }}
</div>
</header>
@endif
<!-- Page Content -->
{{ $slot }}
</div>
</x-app-layout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment