company = $company; $this->application = $application; $this->employee = $employee; $this->employer = $employer; } /** * Returns count of company. * * @param array $filter * * @return int */ public function count() { return 0; } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.company.gadget', $count = 10) { if (User::hasRole('user')) { $this->company->pushCriteria(new \Litepie\Larajobs\Repositories\Criteria\CompanyUserCriteria()); } $company = $this->company->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('company::' . $view, compact('company'))->render(); } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.application.gadget', $count = 10) { if (User::hasRole('user')) { $this->application->pushCriteria(new \Litepie\Larajobs\Repositories\Criteria\ApplicationUserCriteria()); } $application = $this->application->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('company::' . $view, compact('application'))->render(); } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.employee.gadget', $count = 10) { if (User::hasRole('user')) { $this->employee->pushCriteria(new \Litepie\Larajobs\Repositories\Criteria\EmployeeUserCriteria()); } $employee = $this->employee->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('company::' . $view, compact('employee'))->render(); } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.employer.gadget', $count = 10) { if (User::hasRole('user')) { $this->employer->pushCriteria(new \Litepie\Larajobs\Repositories\Criteria\EmployerUserCriteria()); } $employer = $this->employer->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('company::' . $view, compact('employer'))->render(); } }