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

Memes By {{ $data['user']->name }}

Total Earnings: {{ $data['user']->tips_total }}

Total Memes: {{ $data['user']->memes_count }}

@foreach ($data['memes'] as $meme)
@if ($meme->image) {{ $meme->title }} Meme @else {{ $meme->title }} Meme @endif
{{ $meme->title }}

{{ $meme->meme_tips_total }} XMR Recieved

{{ $meme->created_at->diffForHumans() }}

@endforeach
{{ $data['memes']->links() }}
@endsection