@extends('layouts2') @section('title') My Ads @endsection @section('user-content')
Icon
Want to sell more?

Post more Ads for less. Packages that help you save money.

@php $properties = DB::table('properties')->where('user_id', Auth::guard('web')->user()->id)->get(); @endphp
View all ads ({{count($properties)}})
@if(count($properties)==0)

No item found

@endif @foreach($properties as $row)

FROM: 30 APR 2025 - TO: 30 MAY 2025

{{$row->title}}
{{$row->title}}

₹{{$row->price}}

@if($row->status==1) @php $is_live = "live"; @endphp ACTIVE @else @php $is_live = "inactive"; @endphp INACTIVE @endif

This ad is currently {{$is_live}}

@endforeach @endsection