@extends('adminlte::page') @section('title', 'Tienda') @section('css') @stop @section('content_header')

Tienda


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

{{$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
@endif
@if($accounts->count() > 0)
@foreach($accounts as $account) @if($account->sale_type == 'profile') @if($account->profilesbuyed->count() > 0)
{{$account->service->title}}

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

@endif @endif @endforeach
@else
@endif
@stop @section('js') @include('admin.partials.messages') @stop