Skip to content

Instantly share code, notes, and snippets.

@DarkGhostHunter
Created May 22, 2018 18:10
Show Gist options
  • Save DarkGhostHunter/ef244e68da1fc65404758c9cbcbb0d30 to your computer and use it in GitHub Desktop.
Save DarkGhostHunter/ef244e68da1fc65404758c9cbcbb0d30 to your computer and use it in GitHub Desktop.
56413a512688-UnregisterController
<?php
namespace App\Http\Controllers
use App\User;
use App\Jobs\FarewellUser;
use App\Http\Controllers\Controller;
class UnregisterController extends Controller {
// ...
public function unregisterUser(User $user) {
FarewellUser::dispatch($user);
$user->delete();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment