@extends ('layouts.in') @section ('body') @if ($process->isNotEmpty())
@foreach ($process as $each) @endforeach
{{ __('server-status.port') }} {{ __('server-status.pid') }} {{ __('server-status.owner') }} {{ __('server-status.started') }} {{ __('server-status.time') }} {{ __('server-status.command') }}
{{ $each->port }} {{ $each->pid }} {{ $each->owner }} {{ $each->start }} {{ $each->time }} {{ $each->command }}
@endif
@foreach ($list as $row) @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