I've been following the Livewire docs and screencasts to build my new app, but I could be doing something wrong because the <head>
tag is been included twice.
Here is my code:
routes\web.php
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Livewire\User\All as UserAll;
Route::get('/', function () {
return view('welcome');
});
Route::middleware([
'auth:sanctum',
config('jetstream.auth_session'),
'verified'
])->group(function () {
Route::get('/dashboard', function () {
return view('dashboard');
})->name('dashboard');
// Users
Route::prefix('users')->group(function () {
Route::get('/', UserAll::class)->name('users-all');
});
});
App\Http\Livewire\User\All.php
<?php
namespace App\Http\Livewire\User;
use Livewire\WithPagination;
use App\Models\User;
use Livewire\Component;
class All extends Component
{
use WithPagination;
public $search = '';
public function render()
{
return view('livewire.user.all', [
'users' => User::search('name', $this->search)->paginate(10)
]);
}
}
App\View\Components\UserLayout.php
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class UserLayout extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('layouts.user');
}
}
resourse\views\layoutsuser.blade.php
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.bunny.net/css2?family=Nunito:wght@400;600;700&display=swap">
<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
<!-- Styles -->
@livewireStyles
</head>
<body class="font-sans antialiased dashboard">
<x-jet-banner />
<div class="min-h-screen bg-gray-100">
@livewire('navigation-menu')
<!-- Page Heading -->
@if (isset($header))
<header class="bg-white shadow">
<div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
{{ $header }}
</div>
</header>
@endif
<!-- Page Content -->
<main>
{{ $slot }}
</main>
</div>
@stack('modals')
@livewireScripts
</body>
</html>
resourse\views\livewire\user\all.blade.php
<x-user-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Users') }}
</h2>
<input wire:model="search" type="text">
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-xl sm:rounded-lg">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
<table>
<thead>
<tr>
<th>{{ __('ID') }}</th>
<th>{{ __('Name') }}</th>
<th>{{ __('Email') }}</th>
<th>{{ __('Date') }}</th>
</tr>
</thead>
<tbody>
@foreach ($users as $user)
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->name }}</td>
<td>{{ $user->email }}</td>
<td>{{ $user->created_at->format('M, d Y') }}</td>
</tr>
@endforeach
</tbody>
</table>
<div class="my-7">
{{ $users->links() }}
</div>
</div>
</div>
</div>
</div>
</div>
</x-user-layout>
If I remove the <x-user-layout>
tag in the blade, the problem seems to be fixed, but then livewire doesn't work.
I've tried many solutions, but nothig works. What am I doing wrong here?
Thanks a lot in advance.
try this in
App\Http\Livewire\User\All.php add layout
public function render()
{
return view('livewire.user.all', [
'users' => User::search('name', $this->search)->paginate(10)
])->layout('layouts.user');
}