@extends('layout.master') @section('title') {{ config('app.name') }} - @yield('page-title') @endsection {{-- NavTop:[ <-] [頁面標題] [選單] --}} {{-- 有左側的sidebar --}} @section('content')

@yield('nav-title')

@include('partial.topbar._navbar-back')
@include('partial.aside._user', ['userName' => session('user_name') ?? 'UserName', 'userMoney' => '0'])
@yield('container')
@include('partial._footer') @endsection