. */ namespace App\Http\Controllers; use App\Vacancy; class HomeController extends Controller { // doesn't need a service, because it doesn't contain major logic. /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $positions = Vacancy::where('vacancyStatus', 'OPEN') ->where('vacancyCount', '<>', 0) ->get(); return view('home') ->with('positions', $positions); } }