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

@lang('My ResumeCV')

@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Name') @lang('Public link') @lang('Views') @lang('Date Info') @lang('Action')
{{ $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')}}
@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