Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Last active June 2, 2016 22:28
Show Gist options
  • Save Sarav-S/3dc0c553bfd573dc6b6d6d24f24b3b6f to your computer and use it in GitHub Desktop.
Save Sarav-S/3dc0c553bfd573dc6b6d6d24f24b3b6f to your computer and use it in GitHub Desktop.
/**
* Remove the specified resource from storage.
*
* @param App\User $user
* @return \Illuminate\Http\Response
*/
public function destroy($user)
{
if ($user->delete()) {
session()->flash('status', 'User deleted successfully');
} else {
session()->flash('status', 'Unable to delete user. Please try again');
}
return back();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment