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

Dashboard

@stop @section('content') @php $symbol = "$"; if(!empty($setting->currency)){ $currency = json_decode($setting->currency, true); $symbol = $currency['symbol']; } @endphp
Ingresos {{$symbol}} {{number_format($input,2,',','.')}}
Gastos {{$symbol}} {{number_format($output,2,',','.')}}
Balance {{$symbol}} {{number_format($balance,2,',','.')}}
@foreach($movements as $mv) @endforeach
# Tipo Descripcion Monto Fecha
{{$mv->id}} @if($mv->type == 'input') Entrada @else Salida @endif {{$mv->description}} {{$symbol}} {{number_format($mv->amount,2,',','.')}} {{date('d-m-Y', strtotime($mv->datemovement))}}
@if($expirations_subscriptions) @foreach($expirations_subscriptions as $es) @endforeach @endif
Servicio Cuenta (email) Cliente Dias Restantes Facturacion Acciones
@if(!empty($es->service->cover)) @endif {{$es->service->name}} {{$es->account->email}} {{$es->customer->name}} {{$es->last_days}} {{date('d/m/Y',strtotime($es->date_to))}}
@if($accounts) @foreach($accounts as $acc) @endforeach @endif
Sercicio Cuenta (Email) Dias Restantes Facturacion
@if(!empty($acc->service->cover)) @endif {{@$acc->service->name}} {{$acc->email}} {{$acc->last_days}} {{date('d/m/Y',strtotime($acc->dateto))}}
@stop @section('js') @stop