@if (\Session::has('success'))
{!! \Session::get('success') !!}
@php Session::forget('success'); @endphp
@endif
@if (\Session::has('error'))
{!! \Session::get('error') !!}
@php Session::forget('error'); @endphp
@endif
@isset($s)
Buscando por: {{ $s }}
@else
Lista de apps
@endif
@foreach($accountsFilter as $account => $count)
@if($account === 0)
@continue
@endif
@endforeach
@php
$semContaCount = $accountsFilter[0] ?? 0;
@endphp
@if($allApps->count() == 0)
Nenhum aplicativo
@else
| # |
Porta |
Nome |
Solicitado em |
Status |
Conta |
Ação |
@php
foreach($allApps as $app){
@endphp
| {{ $app->id }} |
{{ $app->port }} |
{{ $app->name }} |
{{ date('d/m/Y H:i',strtotime($app->created_at)) }} |
{!! ($app->status == 0 ? 'Pendente' : ($app->status == 2 ? 'Análise' : 'Publicado')) !!}
|
{{ $app->account ? str_pad($app->account, 2, '0', STR_PAD_LEFT) : '--' }}
|
@if($app->status != '0')
@endif
@if($app->status == '0')
@else
@endif
|
@php } @endphp
@empty($s)
{{ $allApps->links('vendor.pagination.default') }}
@endif
@endif