appreciationRepository = $appreciationRepository; } /** * Display a listing of the resource. */ public function index() { $data['title'] = "Appreciation Lists"; $data['appreciationLists'] = $this->appreciationRepository->findAll(); return view('admin::appreciations.index', $data); } /** * Show the form for creating a new resource. */ public function create() { $data['title'] = "Create Appreciation"; $data['editable'] = false; return view('admin::appreciations.create', $data); } /** * Store a newly created resource in storage. */ public function store(Request $request): RedirectResponse { $this->appreciationRepository->create($request->all()); toastr()->success('Appreciation Created Successfully.'); return redirect()->route('appreciation.index'); } /** * Show the specified resource. */ public function show($id) { return view('admin::appreciations.show'); } /** * Show the form for editing the specified resource. */ public function edit($id) { $data['title'] = "Edit Appreciation"; $data['editable'] = true; $data['appreciation'] = $this->appreciationRepository->getAppreciationById($id); return view('admin::appreciations.edit', $data); } /** * Update the specified resource in storage. */ public function update(Request $request, $id): RedirectResponse { $this->appreciationRepository->update($id, $request->all()); toastr()->success('Appreciation Updated Successfully.'); return redirect()->route('appreciation.index'); } /** * Remove the specified resource from storage. */ public function destroy($id) { // } }