Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active August 10, 2021 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/95ff56a28da2cc84cab1eeb17a5a0173 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/95ff56a28da2cc84cab1eeb17a5a0173 to your computer and use it in GitHub Desktop.
<?php
Route::get("/ban-user", function () {
$user = \App\Models\User::first();
return tap($user)->ban([
"comment" => "Mala conducta",
"expired_at" => "+1 month",
]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment