lasthourcloud/app/Http/Livewire/Project/Application/EnvironmentVariable/All.php

17 lines
328 B
PHP
Raw Normal View History

2023-05-05 07:28:00 +00:00
<?php
namespace App\Http\Livewire\Project\Application\EnvironmentVariable;
use App\Models\Application;
use Livewire\Component;
class All extends Component
{
public Application $application;
2023-05-05 10:08:38 +00:00
protected $listeners = ['refreshEnvs'];
2023-05-05 07:28:00 +00:00
public function refreshEnvs()
{
$this->application->refresh();
}
}