contactService = $contactService; $this->middleware('maintenance_mode'); } public function index() { try{ return view('contactrequest::contact.index'); }catch(Exception $e){ LogActivity::errorLog($e->getMessage()); return $e->getMessage(); } } public function getData(){ $ContactList = $this->contactService->getAll(); return DataTables::of($ContactList) ->addIndexColumn() ->addColumn('message', function($ContactList){ return \Illuminate\Support\Str::limit(@$ContactList->message, 50, $end='.....'); }) ->addColumn('action', function($ContactList){ return view('contactrequest::contact.components._action_td',compact('ContactList')); }) ->rawColumns(['action']) ->toJson(); } public function show($id) { $contact = $this->contactService->getById($id); return view('contactrequest::contact.show',compact('contact')); } public function destroy(Request $request) { try { $this->contactService->deleteById($request->id); LogActivity::successLog('contact deleted.'); } catch (Exception $e) { LogActivity::errorLog($e->getMessage()); return response()->json([ 'status' => false, 'message' => $e->getMessage() ]); } return $this->loadTableData(); } private function loadTableData() { try { $ContactList = $this->contactService->getAll(); return response()->json([ 'TableData' => (string)view('contactrequest::contact.components.list', compact('ContactList')) ]); } catch (Exception $e) { LogActivity::errorLog($e->getMessage()); Toastr::error(__('common.operation_failed')); return back(); } } }