Files

30 lines
550 B
PHP

<?php
namespace App\View\Components\Admin;
use App\Models\User\User;
use Auth;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Navbar extends Component
{
public User $user;
/**
* Create a new component instance.
*/
public function __construct()
{
$this->user = Auth::user();
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.admin.navbar');
}
}