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

39 lines
939 B
PHP
Raw Normal View History

2023-05-04 20:29:14 +00:00
<?php
namespace App\Http\Livewire\Project\Application\EnvironmentVariable;
use App\Models\EnvironmentVariable as ModelsEnvironmentVariable;
use Livewire\Component;
class Show extends Component
{
public $parameters;
public ModelsEnvironmentVariable $env;
protected $rules = [
'env.key' => 'required|string',
'env.value' => 'required|string',
'env.is_build_time' => 'required|boolean',
];
2023-06-16 10:35:40 +00:00
protected $validationAttributes = [
'key' => 'key',
'value' => 'value',
'is_build_time' => 'build',
];
2023-05-04 20:29:14 +00:00
public function mount()
{
2023-06-15 07:15:41 +00:00
$this->parameters = getRouteParameters();
2023-05-04 20:29:14 +00:00
}
public function submit()
{
$this->validate();
$this->env->save();
2023-06-22 08:04:39 +00:00
$this->emit('success', 'Environment variable updated successfully.');
2023-05-04 20:29:14 +00:00
}
public function delete()
{
$this->env->delete();
2023-05-05 07:28:00 +00:00
$this->emit('refreshEnvs');
2023-05-04 20:29:14 +00:00
}
}