@extends('layouts.app') @section('title') User Manage Ads @endsection @section('styles') @endsection @section('content')
@endif
{{ $ad->title ?? '' }}
{{ config('app.currency_symbol') }} {{ number_format($ad->price, 2) }}
Brand: {{ $ad->brand->name ?? '' }}
Posted: {{ $ad->created_at }}
Status: {{ $ad->status }}
No any ads available.
@endif {{ $ads->links('pagination::bootstrap-5') }}
@endif
{{ $ad->title ?? '' }}
{{ config('app.currency_symbol') }} {{ number_format($ad->price, 2) }}
Brand: {{ $ad->brand->name ?? '' }}
Posted: {{ $ad->created_at }}
No active ads available.
@endif {{ $activeAds->links('pagination::bootstrap-5') }}
@endif
{{ $ad->title ?? '' }}
{{ config('app.currency_symbol') }} {{ number_format($ad->price, 2) }}
Brand: {{ $ad->brand->name ?? '' }}
Posted: {{ $ad->created_at }}
No inactive ads available.
@endif {{ $inactiveAds->links('pagination::bootstrap-5') }}
@endif
{{ $ad->title ?? '' }}
{{ config('app.currency_symbol') }} {{ number_format($ad->price, 2) }}
Brand: {{ $ad->brand->name ?? '' }}
Posted: {{ $ad->created_at }}
No pending ads available.
@endif {{ $pendingAds->links('pagination::bootstrap-5') }}
@endif
{{-- {{ $ad->title ?? '' }}
{{ config('app.currency_symbol') }} {{ number_format($ad->price, 2) }}
Brand: {{ $ad->brand->name ?? '' }}
Posted: {{ $ad->created_at }}
No moderated ads available.
@endif {{ $moderateAds->links('pagination::bootstrap-5') }}