@extends('stisla.layouts.app-table') @section('title') Ubuntu @endsection @section('content')
| # | {{ __('Name') }} | {{ __('Path') }} | {{ __('Type') }} | {{ __('Aksi') }} |
|---|---|---|---|---|
| {{ $i++ }} | .. | .. | Dir | |
| {{ $i++ }} | {{ basename($item) }} | {{ $item }} | Dir | |
| {{ $i++ }} | {{ basename($item->getPathname()) }} | {{ $item->getPathname() }} | File | @include('stisla.includes.forms.buttons.btn-edit', ['link' => route('ubuntu.edit', [encrypt($item->getPathname())])]) @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.duplicate', [encrypt($item->getPathname())]), 'icon' => 'fa fa-copy', 'tooltip' => 'Duplikasi', ]) @if (basename($item->getPathname()) === '.env.example' && $isEnvExists === false) @include('stisla.includes.forms.buttons.btn-success', [ 'link' => route('ubuntu.duplicate', [encrypt($item->getPathname()), 'as' => '.env']), 'icon' => 'fa fa-copy', 'tooltip' => 'Duplikasi sebagi .env', 'size' => 'sm', ]) @endif @include('stisla.includes.forms.buttons.btn-delete', ['link' => route('ubuntu.destroy', [encrypt($item->getPathname())])]) |
{{ $supervisorStatus }}
| # | {{ __('Path') }} | {{ __('Aksi') }} |
|---|---|---|
| {{ $i++ }} | {{ $item }} | @include('stisla.includes.forms.buttons.btn-edit', ['link' => route('ubuntu.edit', [encrypt($item)])]) @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.duplicate', [encrypt($item)]), 'icon' => 'fa fa-copy', 'tooltip' => 'Duplikasi', ]) @include('stisla.includes.forms.buttons.btn-delete', ['link' => route('ubuntu.destroy', [encrypt($item)])]) |
{{ $php['status_fpm'] }}
| # | {{ __('Path') }} | {{ __('Type') }} | {{ __('Aksi') }} |
|---|---|---|---|
| {{ $i++ }} | {{ $item }} | Dir |
{{ $nginxStatus }}
| # | {{ __('Filename') }} | {{ __('Domain') }} | {{ __('Enabled') }} | {{ __('SSL') }} | {{ __('Aksi') }} |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->getFilename() }} | {{ $item->domain }} | @if ($item->enabled) true @else false @endif | @if ($item->is_ssl) true @else false @endif | @include('stisla.includes.forms.buttons.btn-edit', ['link' => route('ubuntu.edit', [encrypt($item->getPathname())])]) @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.duplicate', [encrypt($item->getPathname())]), 'icon' => 'fa fa-copy', 'tooltip' => 'Duplikasi', ]) @include('stisla.includes.forms.buttons.btn-delete', ['link' => route('ubuntu.destroy', [encrypt($item->getPathname())])]) |
{{ $mysqlStatus }}
| # | @foreach ($structure as $item){{ $item->column }} | @endforeach{{ __('Aksi') }} |
|---|---|---|
| {{ $loop->iteration }} | @foreach ($structure as $column){{ $item->{$column->column} }} | @endforeach@include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.edit-row', ['database' => request('database'), 'table' => request('table'), 'id' => $item->{$primary}, 'primary' => $primary]), ]) @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.edit-row', [ 'database' => request('database'), 'table' => request('table'), 'id' => $item->{$primary}, 'primary' => $primary, 'json' => 'true', ]), 'icon' => 'fa fa-code', 'tooltip' => 'Lihat Json', ]) @include('stisla.includes.forms.buttons.btn-delete', [ 'link' => route('ubuntu.delete-row', ['database' => request('database'), 'table' => request('table'), 'id' => $item->{$primary}]), 'primary' => $primary, ]) |
{{ $mysqlStatus }}
| # | {{ __('Tabel') }} | {{ __('Size') }} | {{ __('Rows') }} | {{ __('Aksi') }} |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->table }} | {{ $item->size_mb }} Mb | {{ $item->total_row }} | @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.index', ['database' => request('database'), 'table' => $item->table]), 'icon' => 'fa fa-table', 'tooltip' => 'Lihat Data', ]) @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.index', ['database' => request('database'), 'table' => $item->table, 'action' => 'json']), 'icon' => 'fa fa-code', 'tooltip' => 'Lihat JSON', ]) @include('stisla.includes.forms.buttons.btn-success', [ 'link' => route('ubuntu.index', ['database' => request('database'), 'table' => $item->table, 'action' => 'json-download']), 'icon' => 'fa fa-code', 'tooltip' => 'Download JSON', 'size' => 'sm', ]) @include('stisla.includes.forms.buttons.btn-danger', [ 'link' => route('ubuntu.mysql-paginate', ['database' => request('database'), 'table' => $item->table, 'action' => 'json-paginate']), 'icon' => 'fa fa-code', 'tooltip' => 'Paginate JSON', 'size' => 'sm', ]) |
{{ $mysqlStatus }}
| # | {{ __('Database') }} | {{ __('Tabel') }} | {{ __('Size') }} | {{ __('Aksi') }} |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->database }} | {{ $item->total_table }} | {{ $item->size_mb }} Mb | @include('stisla.includes.forms.buttons.btn-edit', [ 'link' => route('ubuntu.index', ['database' => $item->database]), 'icon' => 'fa fa-table', 'tooltip' => 'Lihat Tabel', ]) @include('stisla.includes.forms.buttons.btn-danger', [ 'link' => route('ubuntu.index', ['database' => $item->database, 'action' => 'delete_db']), 'icon' => 'fa fa-trash', 'tooltip' => 'Hapus', ]) |