/home/aloic1/public_html/core/vendor/laravel/jetstream/src/Http/Livewire/UpdateTeamNameForm.php
<?php
namespace Laravel\Jetstream\Http\Livewire;
use Illuminate\Support\Facades\Auth;
use Laravel\Jetstream\Contracts\UpdatesTeamNames;
use Livewire\Component;
class UpdateTeamNameForm extends Component
{
/**
* The team instance.
*
* @var mixed
*/
public $team;
/**
* The component's state.
*
* @var array
*/
public $state = [];
/**
* Mount the component.
*
* @param mixed $team
* @return void
*/
public function mount($team)
{
$this->team = $team;
$this->state = ['name' => $team->name];
}
/**
* Update the team's name.
*
* @param \Laravel\Jetstream\Contracts\UpdatesTeamNames $updater
* @return void
*/
public function updateTeamName(UpdatesTeamNames $updater)
{
$this->resetErrorBag();
$updater->update($this->user, $this->team, $this->state);
$this->emit('saved');
$this->emit('refresh-navigation-dropdown');
}
/**
* Get the current user of the application.
*
* @return mixed
*/
public function getUserProperty()
{
return Auth::user();
}
/**
* Render the component.
*
* @return \Illuminate\View\View
*/
public function render()
{
return view('teams.update-team-name-form');
}
}
@LwBee Strong Bypass
Upload File
Create New File