Edit File: GenreShow.php
<?php namespace App\Livewire\Show; use App\Models\Genre; use Livewire\Component; use Livewire\Attributes\Layout; class GenreShow extends Component { public $genre; public function mount($slug) { $this->genre = Genre::with("animes")->where("slug", $slug)->first(); } #[Layout("layouts.guest")] public function render() { return view('livewire.show.genre-show', [ 'animes' => $this->genre->animes()->paginate(24), ]); } }
Back