@extends ('layouts.in') @section ('body') @if ($process->isNotEmpty())
@foreach ($process as $each) @endforeach
{{ __('server-status.port') }} {{ __('server-status.started') }} {{ __('server-status.cpu') }} {{ __('server-status.memory') }} {{ __('server-status.pid') }} {{ __('server-status.owner') }} {{ __('server-status.command') }} {{ __('server-status.log') }}
{{ $each->port }} {{ $each->start }} {{ $each->cpu }} {{ $each->memory }} {{ $each->pid }} {{ $each->owner }} {{ $each->command }} @if ($each->route) @icon('file-text', 'w-4 h-4') @endif
@endif
@foreach ($list as $row) @php ($link = route('server.update', $row->id)) @endforeach
{{ __('server-status.port') }} {{ __('server-status.protocol') }} {{ __('server-status.debug') }} {{ __('server-status.enabled') }}
{{ $row->port }} {{ $row->protocol }} @status($row->debug) @status($row->enabled) @if ($row->enabled) @endif
@stop