@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

ClassifiedAd

image
{{$classified->user->username}}
Classified Ads Info
@foreach ($classifiedCount as $count)
{{$count->count}}
{{ucfirst($count->status)}}
@endforeach
Username
Email
Signup with
{{ isset($user->platform) ? ucfirst(preg_replace('/(?platform)) : 'Bloodlines App' }}

Product Images

@foreach ($classified->gallery as $value) @endforeach

Details

Category Title Description Price Location Expiry Date Status
{{$classified->category->title}} {{$classified->title}} {{$classified->description}} ${{$classified->price}} {{$classified->location}} {{date("F j, Y", strtotime($classified->exp_date))}} {{ucfirst($classified->status)}}

Pedigrees

@if (count($classified->pedigree) == 0) @else @foreach ($classified->pedigree as $pedigree) @php $pedigreeData = $pedigree->pedigree; @endphp @endforeach @endif
Photo Full Name Sex DOB Color Weight Dam Sire Creator View
No pedigree attached
@if (!empty($pedigreeData->photos[0]->photo)) tbl-photos @else No Image @endif {{ trim($pedigreeData->owner_name . ' ' . $pedigreeData->before_name_title . ' ' . $pedigreeData->dog_name . ' ' . $pedigreeData->after_name_title) }} {{ ucfirst($pedigreeData->sex ?? 'Not Specified') }} {{ $pedigreeData->dob ?? 'Not Specified' }} {{ $pedigreeData->color ?? 'Not Specified' }} {{ $pedigreeData->weight ?? 'Not Specified' }} {{ optional($pedigreeData->dam)->full_name ?? 'Unknown' }} {{ optional($pedigreeData->sire)->full_name ?? 'Unknown' }} {{ ucfirst(optional($pedigreeData->creater)->username) }}
@yield('content')
@include('partials.footer')
@include('global.footer-links')