model = $employee_managment; parent::__construct(); } /** * Display a listing of the resource. * * @return Response */ public function index(EmployeeManagmentAdminRequest $request) { if ($request->wantsJson()) { $array = $this->model->json(); foreach ($array as $key => $row) { $array[$key] = array_only($row, config('hrms.employee_managment.listfields')); } return ['data' => $array]; } $this->theme->prependTitle(trans('hrms::employee_managment.names').' :: '); return $this->theme->of('hrms::admin.employee_managment.index')->render(); } /** * Display the specified resource. * * @param Request $request * @param int $id * * @return Response */ public function show(EmployeeManagmentAdminRequest $request, $id) { $employee_managment = $this->model->find($id); if (empty($employee_managment)) { if ($request->wantsJson()) { return []; } return view('hrms::admin.employee_managment.new'); } if ($request->wantsJson()) { return $employee_managment; } Former::populate($employee_managment); return view('hrms::admin.employee_managment.show', compact('employee_managment')); } /** * Show the form for creating a new resource. * * @param Request $request * * @return Response */ public function create(EmployeeManagmentAdminRequest $request) { $employee_managment = $this->model->findOrNew(0); Former::populate($employee_managment); return view('hrms::admin.employee_managment.create', compact('employee_managment')); } /** * Display the specified resource. * * @param Request $request * * @return Response */ public function store(EmployeeManagmentAdminRequest $request) { try { $attributes = $request->all(); $employee_managment = $this->model->create($attributes); return $this->success(trans('messages.success.created', ['Module' => trans('hrms::employee_managment.name')])); } catch (Exception $e) { return $this->error($e->getMessage()); } } /** * Show the form for editing the specified resource. * * @param Request $request * @param int $id * * @return Response */ public function edit(EmployeeManagmentAdminRequest $request, $id) { $employee_managment = $this->model->find($id); Former::populate($employee_managment); return view('hrms::admin.employee_managment.edit', compact('employee_managment')); } /** * Update the specified resource. * * @param Request $request * @param int $id * * @return Response */ public function update(EmployeeManagmentAdminRequest $request, $id) { try { $attributes = $request->all(); $employee_managment = $this->model->update($attributes, $id); return $this->success(trans('messages.success.updated', ['Module' => trans('hrms::employee_managment.name')])); } catch (Exception $e) { return $this->error($e->getMessage()); } } /** * Remove the specified resource. * * @param int $id * * @return Response */ public function destroy(EmployeeManagmentAdminRequest $request, $id) { try { $this->model->delete($id); return $this->success(trans('message.success.deleted', ['Module' => trans('hrms::employee_managment.name')]), 200); } catch (Exception $e) { return $this->error($e->getMessage()); } } }