Route::get('/', function () {
    $listings = Listing::with('employer')->get();
    return view('listings',['listings' => $listings]);
});