/home/aloic1/public_html/core/vendor/laravel/jetstream/src/Http/Livewire/DeleteTeamForm.php
<?php
namespace Laravel\Jetstream\Http\Livewire;
use Illuminate\Support\Facades\Auth;
use Laravel\Jetstream\Actions\ValidateTeamDeletion;
use Laravel\Jetstream\Contracts\DeletesTeams;
use Laravel\Jetstream\RedirectsActions;
use Livewire\Component;
class DeleteTeamForm extends Component
{
use RedirectsActions;
/**
* The team instance.
*
* @var mixed
*/
public $team;
/**
* Indicates if team deletion is being confirmed.
*
* @var bool
*/
public $confirmingTeamDeletion = false;
/**
* Mount the component.
*
* @param mixed $team
* @return void
*/
public function mount($team)
{
$this->team = $team;
}
/**
* Delete the team.
*
* @param \Laravel\Jetstream\Actions\ValidateTeamDeletion $validator
* @param \Laravel\Jetstream\Contracts\DeletesTeams $deleter
* @return void
*/
public function deleteTeam(ValidateTeamDeletion $validator, DeletesTeams $deleter)
{
$validator->validate(Auth::user(), $this->team);
$deleter->delete($this->team);
return $this->redirectPath($deleter);
}
/**
* Render the component.
*
* @return \Illuminate\View\View
*/
public function render()
{
return view('teams.delete-team-form');
}
}
@LwBee Strong Bypass
Upload File
Create New File