@extends('layouts.app-general') @section('content')

Bienvenido, {{ Auth::user()->name_complete }}

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif

TOTAL DE CLIENTES

{{ $total_customers }}

TOTAL DE SUBSCRIPTORES

{{ $tota_subscribers }}

TOTAL DE ARTICULOS

{{ $total_articles }}

TOTAL DE COURIERS

{{ $total_couriers }}

TOTAL DE ARTICULOS BUSCADOS

{{ $total_search_articles }}

TOTAL DE CALCULOS

0

TOTAL DE TIENDAS

{{ $total_stores }}

TOTAL DE ENTRADAS DE BLOG

{{ $total_blog_entries }}

COURIERS MAS VISITADOS

@foreach($most_couriers_visits as $most_couriers_visit ) @endforeach
# COURIER VISITAS
1 {{ $most_couriers_visit->name }} {{ $most_couriers_visit->visits }}

TIENDAS MAS VISITADAS

@foreach($most_store_visits as $most_store_visit ) @endforeach
# TIENDA VISITAS
1 {{ $most_store_visit->name }} {{ $most_store_visit->visits }}

ENTRADAS MAS VISITADAS

@foreach($most_blog_entries_visits as $most_blog_entry_visit ) @endforeach
# ENTRADA VISITAS
1 {{ $most_blog_entry_visit->title }} {{ $most_blog_entry_visit->visits }}

ARTICULOS MAS BUSCADOS

@foreach($most_articles_searched as $most_article_searched ) @endforeach
# ARTICULO NUMERO DE BUSQUEDAS
1 {{ $most_article_searched->item_name }} {{ $most_article_searched->number_of_times_searched }}
@endsection