This commit is contained in:
2018-06-02 00:01:39 +02:00
parent ff7b877a80
commit 58c8082606

View File

@@ -10,7 +10,7 @@ class PagesController extends Controller
function dashboard() { function dashboard() {
$teams = Team::all(); $teams = Team::all();
return view('dashboard')->with([ return view('dashboard')->with([
'teams' => $teams; 'teams' => $teams,
]); ]);
} }
} }