@extends('adminlte::page') @section('title', 'Mis Cuentas') @section('content_header')

Mis Cuentas


@if($accounts->count() > 0) @foreach($accounts as $account)
{{$account->service->title}}

{{$account->service->title}}

  • Email: {{$account->email}}
  • Clave Cuenta: {{$account->password}}
  • Facturacion: {{date('d-m-Y',strtotime($account->dateto))}}
  • Dias Restantes: {{$account->last_days}}
  • Perfiles: {{$account->service->profiles}}

@endforeach @else
@endif
@stop