WIP
This commit is contained in:
19
app/Http/Livewire/TemporaryCheckStatus.php
Normal file
19
app/Http/Livewire/TemporaryCheckStatus.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Livewire;
|
||||
|
||||
use App\Models\Application;
|
||||
use Livewire\Component;
|
||||
|
||||
class TemporaryCheckStatus extends Component
|
||||
{
|
||||
public $application_id;
|
||||
|
||||
public function checkStatus() {
|
||||
dd(Application::find(1)->environments);
|
||||
}
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.temporary-check-status');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user