@extends('core::layouts.app') @section('title', __('Dashboard')) @section('content') {{-- Example Dashboard --}}

@lang('Dashboard')

@lang('Total ResumeCV')
{{$total_resume}}
@lang('Total Views ResumeCV')
{{$total_views}}
@if($data_10_first->count() > 0)

@lang('My ResumeCV')

@foreach($data_10_first as $item) @endforeach
@lang('Name') @lang('Public link') @lang('Views') @lang('Date Info')
{{ $item->name }} {{$item->view_count}} @lang('views')
@lang('Created'): {{$item->created_at->format('M j, Y')}}
@lang('Modified'): {{$item->updated_at->format('M j, Y')}}
@endif
{{-- End Example Dashboard --}} @stop