mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-23 22:19:49 +00:00
WIP
This commit is contained in:
@@ -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