Edit File: GuestLayout.php
<?php namespace App\View\Components; use App\Models\Banner; use App\Models\Page; use Illuminate\View\Component; use Illuminate\View\View; class GuestLayout extends Component { public function __construct() { } /** * Get the view / contents that represents the component. */ public function render(): View { return view('layouts.guest'); } }
Back