Customers

@include('components.controls',['data' => $customers])
@include('components.loading')
@if (count($customers)) @foreach ($customers as $key) @endforeach
# Name Email Password Username Actions
{{ ++$offset }} {{ $key->name }} {{ $key->email }} {{ $key->omni_password }} {{ $key->omni_login }}
  @if (!user_account($key->id))   @endif  
@else

No customer exist yet

@endif
@include('customers.add') @include('customers.edit')