@extends('template') @section('content')
Clientes @if(routeAcess('admin.customers.create')) Novo Cliente @endif
@foreach($customers as $customer) @if(!empty($customer->name)) @else @endif @endforeach
Nome Email Plano Status Ações
{{ $customer->name }}{{ $customer->user_name }}{{ $customer->email }} {{ $customer->plano }} @if($customer->user_active == 'yes') {{ $customer->conta_status }} @else {{ $customer->conta_status }} @endif @if(routeAcess('admin.customers.acounts')) @endif @if(routeAcess('admin.customers.logged')) @endif @if(routeAcess('admin.customers.block_unblock')) @if($customer->user_active == 'no') @else @endif @endif @if(isset($customer->id)) @if(routeAcess('admin.customers.balance')) @endif @if(routeAcess('admin.customers.edit')) @endif @endif @if(routeAcess('admin.customers.remove')) @endif @if($customer->contrato > 0) @endif @if(routeAcess('admin.customers.historico')) @endif
@stop() @section('js-admin-customer') @stop()