@extends('web.panel.layout') @section('titulo', config('app.name') . ' - Dashboard') @section('ruta-panel') @endsection @section('contenido-panel')
@if (session()->has('success'))
{{ session()->get('success') }}
@endif

Dashboard

@foreach($user as $key => $value)

{{str_replace('_',' ',$key)}}

@endforeach @if(Auth::user()->admin )

Resumen de Administrador

@foreach($admin as $key => $value)

{{str_replace('_',' ',$key)}}

@endforeach @endif
@endsection