@extends('adminlte::page') @section('title', 'Dashboard - ' . config('app.name') ) @section('content_header')

Dashboard

@stop @section('content')
Total de Pedidos {{ number_format($order->where('order_status_id', 1)->count()) }}
Valor em vendas {{ config('cart.currency_symbol') }} {{ number_format($order->sum('total_paid'), 2, ',', '.') }}
Tiket Médio {{ config('cart.currency_symbol') }} {{ number_format($order->avg('total_paid'), 2, ',', '.') }}
@endsection @section('js') @endsection