diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index ec08b58..69e0246 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -18,6 +18,7 @@ + @yield('extras') @@ -67,6 +68,7 @@ @yield('alert') + @yield('custom_content') @yield('popup_content')
diff --git a/resources/views/misc/blog.blade.php b/resources/views/misc/blog.blade.php index 3931c29..f6f359f 100644 --- a/resources/views/misc/blog.blade.php +++ b/resources/views/misc/blog.blade.php @@ -1,72 +1,18 @@ - - - - - Blog - {{ env('APP_NAME') }} - - - - - - - - - - - - - - - +@extends('layouts.app') + @section('title') + Blog - {{ env('APP_NAME') }} + @endsection + @section('titlediscord') + + @endsection + @section('descdiscord') + + @endsection + @section('extras') + + @endsection - -
- -
- @yield('alert') - - - - \ No newline at end of file + @section('custom_content') + + @endsection + \ No newline at end of file