| Current Path : /var/www/html/logros.sumar.com.py/app/Actions/Jetstream/ |
| Current File : /var/www/html/logros.sumar.com.py/app/Actions/Jetstream/DeleteTeam.php |
<?php
namespace App\Actions\Jetstream;
use Laravel\Jetstream\Contracts\DeletesTeams;
class DeleteTeam implements DeletesTeams
{
/**
* Delete the given team.
*
* @param mixed $team
* @return void
*/
public function delete($team)
{
$team->purge();
}
}