Skip to content

Commit

Permalink
changed default title name
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-staab committed Oct 10, 2024
1 parent d328f7e commit 835a556
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/View/Components/AppLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
]);
}
Expand Down

0 comments on commit 835a556

Please sign in to comment.