diff --git a/resources/views/lamb.blade.php b/resources/views/lamb.blade.php new file mode 100644 index 0000000..0e64824 --- /dev/null +++ b/resources/views/lamb.blade.php @@ -0,0 +1,8 @@ +@extends('layout') + +@section('sidebar') + @include('partials.sidebar',['type' => 'lamb']) +@endsection + +@section('content') +@endsection \ No newline at end of file diff --git a/resources/views/partials/navbar.blade.php b/resources/views/partials/navbar.blade.php index a877ce9..4bccb37 100644 --- a/resources/views/partials/navbar.blade.php +++ b/resources/views/partials/navbar.blade.php @@ -20,19 +20,15 @@
  • - Poultry + Poultry
  • - Pork + Pork
  • - Lamb -
  • - -
  • - Exotics + Lamb
  • diff --git a/resources/views/partials/sidebar.blade.php b/resources/views/partials/sidebar.blade.php index a2fb265..0c8395d 100644 --- a/resources/views/partials/sidebar.blade.php +++ b/resources/views/partials/sidebar.blade.php @@ -8,9 +8,6 @@ @if($type === 'beef')
    - - MeatMasters -
    • @@ -96,6 +93,265 @@
    + @elseif($type === 'poultry') +
    + +
    + @elseif($type === 'pork') +
    + +
    + @elseif($type === 'lamb') +
    + +
    + @elseif($type === 'recipes') +
    + +
    @endif diff --git a/resources/views/pork.blade.php b/resources/views/pork.blade.php new file mode 100644 index 0000000..18736c1 --- /dev/null +++ b/resources/views/pork.blade.php @@ -0,0 +1,8 @@ +@extends('layout') + +@section('sidebar') + @include('partials.sidebar',['type' => 'pork']) +@endsection + +@section('content') +@endsection \ No newline at end of file diff --git a/resources/views/poultry.blade.php b/resources/views/poultry.blade.php new file mode 100644 index 0000000..fe24d13 --- /dev/null +++ b/resources/views/poultry.blade.php @@ -0,0 +1,8 @@ +@extends('layout') + +@section('sidebar') + @include('partials.sidebar',['type' => 'poultry']) +@endsection + +@section('content') +@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 56ec28c..6badd9f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -23,4 +23,16 @@ Route::get('/about', function () { Route::get('/beef', function() { return view('beef'); +}); + +Route::get('/poultry', function() { + return view('poultry'); +}); + +Route::get('/pork', function() { + return view('pork'); +}); + +Route::get('/lamb', function() { + return view('lamb'); }); \ No newline at end of file