get(); return view('pages.data-guru', compact( 'user', 'no' )); } /** * Show the form for creating a new resource. */ public function create() { // } /** * Store a newly created resource in storage. */ public function store(Request $request) { try { // Simpan data ke database User::create($request->all()); return redirect()->route('guru.index')->with('success', 'Data berhasil disimpan.'); } catch (\Exception $e) { // Tangkap pengecualian dan tampilkan pesan kesalahan return redirect()->route('guru.index')->with('error', 'Key yang anda masukkan tidak ada di saldo mon'); } } /** * Display the specified resource. */ public function show(string $id) { // } /** * Show the form for editing the specified resource. */ public function edit(string $id) { // } /** * Update the specified resource in storage. */ public function update(Request $request, string $id) { $data = $request->all(); $item = User::findOrFail($id); $item->update($data); return redirect()->route('guru.index')->with('success', 'Data berhasil diperbarui.'); } /** * Remove the specified resource from storage. */ public function destroy(string $id) { $data = User::findOrFail($id); $data->delete(); return redirect()->route('guru.index'); } }