This commit is contained in:
2018-06-02 00:01:11 +02:00
parent 44864419d9
commit ff7b877a80

View File

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