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
版权声明:本文标题:conventions - Laravel Layout issue - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743764726a2535026.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论