/** * Display a listing of the resource. * * @return Response */ public function index() { $data = Employee::all(); $name = Auth::user()->name; $pos = ProjectOfficer::all(); $adms = Admin::all(); $tls = Teamleader::all(); $mems = Member::all(); return view('dropmin.dashboard.index')->with('data', $name)->with('pos', $pos)->with('adms', $adms)->with('tls', $tls)->with('mems', $mems)->with('data', $data); }
/** * Display a listing of the resource. * * @return Response */ public function index() { $data = Employee::all(); $name = Auth::user()->name; $pos = ProjectOfficer::all(); $adms = Admin::all(); $tls = Teamleader::all(); $mems = Member::all(); $proj = Project::all(); $ac = Auth::user()->id; $acc = AccessClient::where('id_users', $ac)->get(); return view('dropmin.dashboard.index')->with('data', $name)->with('pos', $pos)->with('adms', $adms)->with('tls', $tls)->with('mems', $mems)->with('projs', $proj)->with('accss', $acc)->with('datas', $data); }
/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // Start Check Authorization $invalid_auth = 1; $authRole = Auth::user()->UserRoles->role; if ($authRole == 1 or $authRole == 3 or $authRole == 5 or $authRole == 7 or $authRole == 9) { $invalid_auth = 0; } if ($invalid_auth == 1) { Alert::error('Anda tidak memilik akses ini')->persistent('close'); return redirect('dashboard'); } // End Check Authorization $data = Employee::all(); $name = Auth::user()->name; $pos = ProjectOfficer::all(); $adms = Admin::all(); $tls = Teamleader::all(); $mems = Member::all(); return view('dropmin.record.index')->with('data', $name)->with('pos', $pos)->with('adms', $adms)->with('tls', $tls)->with('mems', $mems)->with('datas', $data); }
public function DelTeam($id, $id_team) { // Start Check Authorization /** * 1. FullAccess - 1 * 2. HRD - 3 * 3. Creator - 5 * 4. Handler - 7 */ $invalid_auth = 1; $authRole = Auth::user()->UserRoles->role; if ($authRole == 7 or $authRole == 1 or $authRole == 3) { $invalid_auth = 0; } if ($invalid_auth == 1) { Alert::error('Anda tidak memilik akses ini')->persistent('close'); return redirect('project/view/' . $id); } // End Check Authorization $db = Team::find($id_team); $db->status = 0; $db->save(); $now = date('Y-m-d'); foreach ($db->tl as $tl) { $db_tl = Teamleader::find($tl->id); $db_tl->status = 0; $db_tl->end = $now; $db_tl->save(); } foreach ($db->store as $store) { $db_st = Store::find($store->id); $db_st->status = 0; $db_st->save(); foreach ($store->members as $gm) { $db_gm = Member::find($gm->id); $db_gm->status = 0; $db_gm->end = $now; $db_gm->save(); foreach ($gm->get_users as $gu) { if ($gm->status == 1) { $db_em = Employee::find($gu->id); $db_em->status = 0; $db_em->save(); } } } } Alert::success('Berhasil menonaktifkan !')->persistent("Close"); return redirect('project/view/' . $id)->with('message', 'Stop Team Success!'); }
public function DelTeam($id, $id_team) { $db = Team::find($id_team); $db->status = 0; $db->save(); $now = date('Y-m-d'); foreach ($db->tl as $tl) { $db_tl = Teamleader::find($tl->id); $db_tl->status = 0; $db_tl->end = $now; $db_tl->save(); } foreach ($db->store as $store) { $db_st = Store::find($store->id); $db_st->status = 0; $db_st->save(); foreach ($store->members as $gm) { $db_gm = Member::find($gm->id); $db_gm->status = 0; $db_gm->end = $now; $db_gm->save(); foreach ($gm->get_users as $gu) { if ($gm->status == 1) { $db_em = Employee::find($gu->id); $db_em->status = 0; $db_em->save(); } } } } Alert::success('Berhasil menonaktifkan !')->persistent("Close"); return redirect('project/view/' . $id)->with('message', 'Stop Team Success!'); }
/** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { $data = Employee::find($id); $province = Province::all(); $cities = City::all(); $citmin = City::whereRaw('id = (select min(`id`) from cities)')->get(); $citmax = City::whereRaw('id = (select max(`id`) from cities)')->get(); $grade = Grade::all(); $jabatans = Jabatan::all(); $pt = array('sd' => 'SD', 'smp' => 'SMP', 'sma' => 'SMA', 'd3' => 'D3', 's1' => 'S1', 'S2' => 'S2'); $citsel = unserialize($data->id_cities); $tls = Teamleader::where('id_users', $data->id)->get(); $pos = ProjectOfficer::where('id_users', $data->id)->get(); $adms = Admin::where('id_users', $data->id)->get(); return view('dropmin/data/edit')->with('data', $data)->with('province', $province)->with('grade', $grade)->with('tls', $tls)->with('pos', $pos)->with('adms', $adms)->with('jabatans', $jabatans)->with('pt', $pt)->with('citsel', $citsel)->with('cities', $cities); }
/** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { // Start Check Authorization /** * 1. FullAccess - 1 * 2. HRD - 3 * 3. Creator - 5 * 4. Handler - 7 */ $invalid_auth = 1; $authRole = Auth::user()->UserRoles->role; if ($authRole == 7 or $authRole == 1 or $authRole == 3) { $invalid_auth = 0; } if ($invalid_auth == 1) { Alert::error('Anda tidak memilik akses ini')->persistent('close'); return redirect('data/list'); } // End Check Authorization $data = Employee::find($id); $province = Province::all(); $cities = City::all(); $citmin = City::whereRaw('id = (select min(`id`) from cities)')->get(); $citmax = City::whereRaw('id = (select max(`id`) from cities)')->get(); $grade = Grade::all(); $jabatans = Jabatan::all(); $pt = array('sd' => 'SD', 'smp' => 'SMP', 'sma' => 'SMA', 'd3' => 'D3', 's1' => 'S1', 'S2' => 'S2'); $citsel = unserialize($data->id_cities); $tls = Teamleader::where('id_users', $data->id)->get(); $pos = ProjectOfficer::where('id_users', $data->id)->get(); $adms = Admin::where('id_users', $data->id)->get(); return view('dropmin/data/edit')->with('data', $data)->with('province', $province)->with('grade', $grade)->with('tls', $tls)->with('pos', $pos)->with('adms', $adms)->with('jabatans', $jabatans)->with('pt', $pt)->with('citsel', $citsel)->with('cities', $cities); }