@extends('layouts.app') @section('content')
{{ $data['meme']->title }}
@if ($data['meme']->caption)

{{ $data['meme']->caption }}

@endif

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

{{ $data['meme']->title }} Meme
{!!html_entity_decode($data['share'])!!}

Tip The Creator

QR code

{{ $data['meme']->address }}

Monero Tips Recieved

@foreach ($data['meme']['tips'] as $tip) @if ($tip->is_deposit === 1) @endif @endforeach
Amount Date Recieved Transaction ID
{{ $tip->amount_formatted }} {{ $tip->created_at->diffForHumans() }} {{ $tip->txid }}

Monero Tips Sent

@foreach ($data['meme']['tips'] as $tip) @if ($tip->is_deposit === 0) @endif @endforeach
Amount Date Sent Transaction ID
{{ $tip->amount_formatted }} {{ $tip->created_at->diffForHumans() }} {{ $tip->txid }}
@endsection