middleware(function ($request, $next) { //$this->user = Auth::guard('web')->user(); return $next($request); }); //CauserResolver::setCauser($this->user); } /** * Display a listing of the resource. */ public function index(SpecialCodeDataTable $dataTable) { /*if (is_null($this->user) || !$this->user->can('masters.read')) { abort(403, 'Sorry !! You are Unauthorized to view any master data !'); }*/ return $dataTable->render('pages.masters.special-code.index'); } /** * Show the form for creating a new resource. */ public function create(){} /** * Store a newly created resource in storage. */ public function store(StoreSpecialCodeRequest $request) { /*if (is_null($this->user) || !$this->user->can('masters.create')) { abort(403, 'Sorry !! You are Unauthorized to create any master data !'); }*/ // Validate the request... $validated = $request->validated(); // Store the Special Code... if($validated){ try{ SpecialCode::create($validated); echo json_encode(['status' => 'success', 'message' => 'Special Code created successfully.']); }catch(\Exception $e){ echo json_encode(['status' => 'error', 'message' => 'Special Code created failed.']); } } return false; } /** * Display the specified resource. */ public function show(SpecialCode $special_code) { } /** * Show the form for editing the specified resource. */ public function edit($id){ $special_code = SpecialCode::find($id); echo json_encode($special_code); } /** * Update the specified resource in storage. */ public function update(UpdateSpecialCodeRequest $request, SpecialCode $special_code) { /*if (is_null($this->user) || !$this->user->can('masters.update')) { abort(403, 'Sorry !! You are Unauthorized to update any master data !'); }*/ // Validate the request... $validated = $request->validated(); // Update the Directorat... if($validated){ try{ $special_code->update($validated); echo json_encode(['status' => 'success', 'message' => 'Special Code updated successfully.']); }catch(\Exception $e){ echo json_encode(['status' => 'error', 'message' => 'Special Code updated failed.']); } } return false; } /** * Remove the specified resource from storage. */ public function destroy(SpecialCode $special_code){ $special_code->delete(); echo json_encode(['status' => 'success', 'message' => 'Special Code deleted successfully.']); } }