Why the deleted data still appear in the interface?
Look here : When I click button delete, data deleted still appear in the interface. I look at the table in the database, the data is erased. Data can be lost if I run this: php artisan cache:clear on git bash. How without running the command, data can be erased? UPDATE My controller is like this : public function deleteAccount(Request $request) { $id_account = $request->input('id_account'); try{ if($this->user_service->deleteAccount($id_account)) { $status='success'; }else { $status = 'failed'; } return redirect('member/profile/setting/account')->with('status',$status); }catch (\Exception