admin管理员组

文章数量:1345579

Title: Is extending a layout that only contains the head valid in Laravel, or should it be a partial?

Body:

Me and a friend are building an admin dashboard in Laravel, and we had a discussion about the layout structure.

He created a layout like this:

 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>@yield('title', 'De Bazaar')</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    @vite(['resources/css/app.css', 'resources/js/app.js'])
    <script src=".js" crossorigin="anonymous"></script>
</head>
<body class="font-sans antialiased text-gray-900 bg-gray-100">
    @yield('body')
</body>
</html>

Then, in the admin dashboard layout, he does this:

@extends('layouts.app')
@section('body')
<div class="flex min-h-screen bg-gray-100">
    <aside class="w-64 bg-white shadow-md hidden md:block">
        <div class="p-4">
            <x-logo />
        </div>
        <nav class="p-4 space-y-2 text-gray-700">
            <a href="#" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-gray-100">
                <i class="fas fa-tachometer-alt"></i>
                <span>Dashboard</span>
            </a>
            <a href="/admin/contracts" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-gray-100">
                <i class="fas fa-file-contract"></i>
                <span>Contracts</span>
            </a>
            <a href="#" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-gray-100">
                <i class="fas fa-users"></i>
                <span>Users</span>
            </a>
            <a href="#" onclick="event.preventDefault(); document.getElementById('logout-form').submit();" class="flex items-center space-x-2 px-4 py-2 rounded text-red-600 hover:bg-red-100">
                <i class="fas fa-sign-out-alt"></i>
                <span>Logout</span>
            </a>
            <form id="logout-form" method="POST" action="{{ route('logout') }}" class="hidden">
                @csrf
            </form>
        </nav>
    </aside>
    <main class="flex-1 p-6">
        @yield('content')
    </main>
</div>
@endsection

My question is: Is this a valid and conventional way to create a layout in Laravel extending a layout just to define the head, or is this better suited as a partial (for example: partials/head.blade.php) that should be included inside a full layout file?

I'm trying to follow Laravel's best practices and structure.

Thanks in advance!

本文标签: conventionsLaravel Layout issueStack Overflow