@extends('layouts.librenmsv1') @section('title', __('Device Groups')) @section('content')
@lang('Device Groups')
@foreach($device_groups as $device_group) @endforeach
@lang('Name') @lang('Description') @lang('Type') @lang('Devices') @lang('Pattern') @lang('Actions')
{{ $device_group->name }} {{ $device_group->desc }} {{ __(ucfirst($device_group->type)) }} id") }}">{{ $device_group->devices_count }} {{ $device_group->type == 'dynamic' ? $device_group->getParser()->toSql(false) : '' }}
@foreach($ungrouped_devices as $device) @endforeach
@lang('Vendor') @lang('Device') @lang('Platform') @lang('Operating System')
{{ $device->os }} @deviceLink($device)
{{ $device->sysName }}
{{ $device->hardware }} {{ $device->os }} {{ $device->version }} @if($device->features) ({{ $device->features }}) @endif
@endsection @section('scripts') @endsection @section('css') @endsection