@extends('admin.master') @section('title', __('Dashboard')) @section('additional_head_tags') @endsection @section('content')
{{ __('Latest transactions') }} |
{{ __('Buyer') }} | {{ __('Amount') }} ({{ config('payments.currency_code') }}) | {{ __('Processor') }} | {{ __('Date') }} |
---|---|---|---|---|
@if($transaction->is_subscription)
{{ __('Subscription') .' - '. $transaction->products[0] }}
@else
@foreach($transaction->products as $product)
{{ $product }}
@endforeach
@endif
|
{{ $transaction->buyer_name ?? $transaction->buyer_email }} | {{ number_format($transaction->amount, 2) }} | {{ $transaction->processor }} | {{ $transaction->date }} |
{{ __('Latest newsletter subscribers') }} |
{{ __('Date') }} |
---|---|
{{ $newsletter_subscriber->email }} | {{ $newsletter_subscriber->created_at }} |
{{ __('Latest reviews') }} |
{{ __('Review') }} | {{ __('Date') }} |
---|---|---|
{{ $review->product_name }} | {{ $review->created_at }} |
{{ __('Comments') }}
{{ $counts->comments }}