@extends('front_end.layouts.app') @section('title', 'My Listings | Marketplace') @section('content')
@include('front_end.pages.marketplace.partials.sidebar')
My Listings
Add New Listing
@if($products->count() > 0)
@foreach($products as $product)
@if($product->getMedia()->isNotEmpty()) {{ $product->name }} @else No Image @endif
@if($product->status == 'active') Active @elseif($product->status == 'pending') Pending @elseif($product->status == 'sold') Sold @elseif($product->status == 'inactive') Inactive @endif
{{ $product->name }}

{{ Str::limit($product->description, 50) }}

{{ $product->currency }} {{ number_format($product->price, 2) }} {{ $product->views ?? 0 }} views
@endforeach
{{ $products->links('pagination::bootstrap-5') }}
@else
No listings

No Listings Found

You haven't created any product listings yet.

Create Your First Listing
@endif
@endsection @push('scripts') @endpush @push('styles') @endpush