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

Ad Details

{{ $ad->title ?? 'Untitled' }}

Status: {{ ucfirst($ad->status) }}

Start: {{ $ad->start_at ?? '—' }} — End: {{ $ad->end_at ?? '—' }}

Target URL: {{ $ad->target_url }}

@if($ad->image_path)
ad
@endif

Transactions

@if($transactions->isEmpty())

No transactions found for this ad.

@else
    @foreach($transactions as $tx)
  • ID: {{ $tx->id }} — {{ strtoupper($tx->provider) }}
    Amount: {{ number_format($tx->amount_cents/100, 0) }} {{ $tx->currency }}
    Status: {{ $tx->status }}
    Created: {{ $tx->created_at }}
  • @endforeach
@endif
@endsection