mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
38 lines
955 B
PHP
38 lines
955 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\View\Components;
|
||
|
|
|
||
|
|
use App\Models\Sensor;
|
||
|
|
use App\Models\Transceiver;
|
||
|
|
use Closure;
|
||
|
|
use Illuminate\Contracts\View\View;
|
||
|
|
use Illuminate\Support\Collection;
|
||
|
|
use Illuminate\View\Component;
|
||
|
|
|
||
|
|
class TransceiverSensors extends Component
|
||
|
|
{
|
||
|
|
public Collection $groupedSensors;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new component instance.
|
||
|
|
*/
|
||
|
|
public function __construct(
|
||
|
|
public Transceiver $transceiver,
|
||
|
|
) {
|
||
|
|
$this->groupedSensors = Sensor::where('device_id', $this->transceiver->device_id)
|
||
|
|
->whereNotNull('entPhysicalIndex')
|
||
|
|
->where('entPhysicalIndex', $this->transceiver->entity_physical_index)
|
||
|
|
->where('group', 'transceiver')
|
||
|
|
->get()
|
||
|
|
->groupBy('sensor_class');
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the view / contents that represent the component.
|
||
|
|
*/
|
||
|
|
public function render(): View|Closure|string
|
||
|
|
{
|
||
|
|
return view('components.transceiver-sensors');
|
||
|
|
}
|
||
|
|
}
|