@extends('core::layouts.app') @section('title', __('ResumeCV')) @section('content')

@lang('User ResumeCVs')

@include('core::partials.admin-sidebar')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Name') @lang('User Info') @lang('Public link') @lang('Views') @lang('Date Info') @lang('Action')
{{ $item->name }} @if(isset($item->user))
{{ $item->user->email }}
{{ $item->user->name }}
@endisset
{{$item->view_count}} @lang('views')
@lang('Created'): {{$item->created_at->format('M j, Y')}}
@lang('Modified'): {{$item->updated_at->format('M j, Y')}}
@csrf @method('DELETE')
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)

@lang('No ResumeCV Found')

@lang("You don't have any ResumeCV").

@lang('New ResumeCV')
@endif
@stop