@extends('frontend.layouts.user.index') @section('title', __('My Trade Ads')) @section('content') {{-- My Trade Ads: status overview, promotion state, and quick lifecycle actions for owned trade ads --}} @php $summaryCards = [ [ 'label' => __('Total Ads'), 'value' => (int) ($summary['total_offers'] ?? 0), 'icon' => 'fa-layer-group', 'tone' => 'primary', ], [ 'label' => __('Live Ads'), 'value' => (int) ($summary['active_offers'] ?? 0), 'icon' => 'fa-check-circle', 'tone' => 'success', ], [ 'label' => __('Promoted Ads'), 'value' => (int) ($summary['promoted_offers'] ?? 0), 'icon' => 'fa-bullhorn', 'tone' => 'warning', ], [ 'label' => __('Open Trades'), 'value' => (int) ($summary['open_orders'] ?? 0), 'icon' => 'fa-sync-alt', 'tone' => 'info', ], [ 'label' => __('Completed Trades'), 'value' => (int) ($summary['completed_orders'] ?? 0), 'icon' => 'fa-check-double', 'tone' => 'success-soft', ], ]; @endphp
@lang('Create your first buy or sell ad to start receiving trade requests in the marketplace.')