Added 'Beef' page and introduced dynamic sidebar
This commit is contained in:
parent
3bda85184b
commit
0d500e6975
|
@ -0,0 +1,8 @@
|
||||||
|
@extends('layout')
|
||||||
|
|
||||||
|
@section('sidebar')
|
||||||
|
@include('partials.sidebar',['type' => 'beef'])
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
@endsection
|
|
@ -16,7 +16,8 @@
|
||||||
<div class="grid grid-cols-6 min-h-screen">
|
<div class="grid grid-cols-6 min-h-screen">
|
||||||
<!-- Sidebar -->
|
<!-- Sidebar -->
|
||||||
<aside class="col-span-1">
|
<aside class="col-span-1">
|
||||||
@include('partials.sidebar')
|
{{--@include('partials.sidebar')--}}
|
||||||
|
@yield('sidebar')
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<!-- Main content area -->
|
<!-- Main content area -->
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Beef </a>
|
<a class="text-gray-500 transition hover:text-gray-500/75" href="/beef"> Beef </a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -1,6 +1,107 @@
|
||||||
<!--<ul class="space-y-1">-->
|
<!--<ul class="space-y-1">-->
|
||||||
|
@php
|
||||||
|
$type = $type ?? 'default';
|
||||||
|
@endphp
|
||||||
|
|
||||||
<div class="flex h-full flex-col justify-between border-e bg-white">
|
<aside>
|
||||||
|
{{--Check type of content to display correct sidebar--}}
|
||||||
|
@if($type === 'beef') <!-- Type 'Beef' sidebar -->
|
||||||
|
<div class="flex h-full flex-col justify-between border-e bg-white">
|
||||||
|
<div class="px-4 py-6">
|
||||||
|
<span class="grid h-10 w-32 place-content-center rounded-lg bg-gray-100 text-xs text-gray-600">
|
||||||
|
MeatMasters
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<ul class="mt-6 space-y-1">
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Ribeye
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Sirloin
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
T-Bone
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Filet Mignon
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Brisket
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Chuck
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Round
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Flank
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Skirt
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
class="block rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700"
|
||||||
|
>
|
||||||
|
Short Ribs
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<!-- Old Sidebar -->
|
||||||
|
<!--<div class="flex h-full flex-col justify-between border-e bg-white">
|
||||||
<div class="px-4 py-6">
|
<div class="px-4 py-6">
|
||||||
<span class="grid h-10 w-32 place-content-center rounded-lg bg-gray-100 text-xs text-gray-600">
|
<span class="grid h-10 w-32 place-content-center rounded-lg bg-gray-100 text-xs text-gray-600">
|
||||||
Logo
|
Logo
|
||||||
|
@ -135,4 +236,4 @@
|
||||||
</details>
|
</details>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>-->
|
|
@ -20,3 +20,7 @@ Route::get('/', function () {
|
||||||
Route::get('/about', function () {
|
Route::get('/about', function () {
|
||||||
return view('about');
|
return view('about');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Route::get('/beef', function() {
|
||||||
|
return view('beef');
|
||||||
|
});
|
Loading…
Reference in New Issue