diff options
Diffstat (limited to 'app/View/Components/Navbar.php')
-rw-r--r-- | app/View/Components/Navbar.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/app/View/Components/Navbar.php b/app/View/Components/Navbar.php index 7f119fe..b7612c1 100644 --- a/app/View/Components/Navbar.php +++ b/app/View/Components/Navbar.php @@ -6,22 +6,19 @@ use Closure; use Illuminate\Contracts\View\View; use Illuminate\View\Component; -class Navbar extends Component -{ +class Navbar extends Component { public $title; /** * Create a new component instance. */ - public function __construct($title) - { + public function __construct($title) { $this->title = $title; } /** * Get the view / contents that represent the component. */ - public function render(): View|Closure|string - { + public function render(): View|Closure|string { return view('components.navigation'); } } |