@section('title', 'Aplicativos') @include('admin/includes/header') @section('head') @endsection
@if (\Session::has('success')) @php Session::forget('success'); @endphp @endif @if (\Session::has('error')) @php Session::forget('error'); @endphp @endif
@isset($s)

Buscando por: {{ $s }}

@else

Lista de apps

@endif
@csrf
@foreach($accountsFilter as $account => $count) @if($account === 0) @continue @endif
@csrf
@endforeach @php $semContaCount = $accountsFilter[0] ?? 0; @endphp
@csrf
@if($allApps->count() == 0)
Nenhum aplicativo
@else @php foreach($allApps as $app){ @endphp @php } @endphp
# Porta Nome Solicitado em Status Conta Ação
{{ $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')
@csrf
@endif @if($app->status == '0') @else @endif
@empty($s) {{ $allApps->links('vendor.pagination.default') }} @endif @endif
@include('admin/includes/footer')