diff --git a/app/View/Components/AppLayout.php b/app/View/Components/AppLayout.php index 3930a54..019ee88 100644 --- a/app/View/Components/AppLayout.php +++ b/app/View/Components/AppLayout.php @@ -4,6 +4,7 @@ use Illuminate\Support\Facades\Route; use Illuminate\View\Component; +use Illuminate\View\View; use LdapRecord\Models\OpenLDAP\Entry; class AppLayout extends Component @@ -24,12 +25,12 @@ public function __construct(){ /** * Get the view / contents that represents the component. * - * @return \Illuminate\View\View + * @return View */ - public function render() + public function render(): View { return view('layouts.app', [ - 'title' => 'Default Headline - pls change', + 'title' => 'StuMV', 'routeParams' => $this->routeParams, ]); }