You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
358 B
20 lines
358 B
<?php
|
|
|
|
namespace App\Actions\Jetstream;
|
|
|
|
use App\Models\User;
|
|
use Laravel\Jetstream\Contracts\DeletesUsers;
|
|
|
|
class DeleteUser implements DeletesUsers
|
|
{
|
|
/**
|
|
* Delete the given user.
|
|
*/
|
|
public function delete(User $user): void
|
|
{
|
|
$user->deleteProfilePhoto();
|
|
$user->tokens->each->delete();
|
|
$user->delete();
|
|
}
|
|
}
|