Lewati ke konten utama

Laravel Session


flash() sementara (hilang saat: refresh, ganti halaman)​

session()->flash(key: 'success', value: 'Data berhasil dibuat!');

redirect()->with() shortcut flash()​

redirect('/')->with(key: 'success', value: 'Data berhasil dibuat!');

put() tidak mudah hilang​

session()->put(key: 'success', value: 'Data berhasil dibuat!');