Debugging

This commit is contained in:
2018-06-02 00:06:15 +02:00
parent ceea986980
commit 1457c6faf4

View File

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