@extends('adminlte::page')
@section('title', 'Tienda')
@section('css')
@stop
@section('content_header')
@if($accounts->count() > 0)
@foreach($accounts as $account)
@if($account->sale_type == 'complete')
{{$account->service->title}}
- Servicio: {{$account->service->name}}
- Perfiles: {{$account->service->profiles}}
- Precio: {{\App\Helpers\Helper::currentSymbol()}} {{number_format($account->sale_price, 2, ',','.')}}
@endif
@endforeach
@else
No hay cuentas disponibles en este Momento!!
@endif
@if($accounts->count() > 0)
@foreach($accounts as $account)
@if($account->sale_type == 'profile')
@if($account->profilesbuyed->count() > 0)
{{$account->service->title}}
@endif
@endif
@endforeach
@else
No hay cuentas disponibles en este Momento!!
@endif
@stop
@section('js')
@include('admin.partials.messages')
@stop