@extends('layouts.master')
@section('pageStyle')
@endsection
@section('content')
About
- Title : {{ $ads->title }}
- Description : {{ $ads->description }}
- Ad By :
{{ $ads->user ? $ads->user->name : 'No Available' }}
Creator Contacts
- Contact: {{ $ads->user->name }}
- Creator Email: {{ $ads->user->email }}
Ad Properties
- Days:
{{ $ads->days }}
- Amount:
{{ $ads->amount }}
- Currency:
{{ $ads->currency }}
- Redirect URL:
{{ $ads->redirect_url }}
- Status:
{{ handleBooleanStatus($ads->status) }}
@if($ads->adMedia->isNotEmpty())
@foreach($ads->adMedia as $value)
-
@if($value->media)
@else
Not Available
@endif
@endforeach
@else
No media yet
@endif
@endsection
@section('scripts')
@endsection