@extends('pages.user_dashboard')
@section('breadcrumb')
@endsection
@section('user_content')
@include('layouts.user_sidebar')
My Ads
| Photo |
Title |
Category |
Status |
Price |
Expiry |
Action |
@foreach($ads as $ad)
.'/'.$ad->photos->where('type','main_image')->pluck('image_path')->first()}}) |
{{$ad->title}}
|
{{$ad->category->name}} |
{{$ad->is_active == 1 ? 'active' : 'inactive'}}
|
Ksh {{number_format($ad->price, 0)}}
|
{{$ad->exp_date}}
|
|
@endforeach
@endsection