You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
447 B
17 lines
447 B
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use App\Models\airflow;
|
|
use App\Models\User;
|
|
|
|
class AirFlowTargetTable extends BaseTableComponent
|
|
{
|
|
public function mount()
|
|
{
|
|
$this->headers = ['ID', 'Имя', 'URL', 'Username', 'Порт', 'Версия', 'Активный'];
|
|
$this->data = Airflow::all(['id', 'name', 'url', 'username', 'port', 'version', 'is_active'])->toArray();
|
|
$this->view_item_route = "airflow.view";
|
|
}
|
|
}
|