@extends('admin.layout') @section('content')
| Title | Lender | Price (4d) | Status | Approved | Featured | Actions |
|---|---|---|---|---|---|---|
|
{{ $listing->title }} {{ $listing->brand ?? '—' }} · {{ $listing->size }} |
{{ $listing->user->name }} | £{{ $listing->price_4d }} | @if($listing->status === 'active') Active @elseif($listing->status === 'paused') Paused @else Deleted @endif | @if($listing->admin_approved) ✓ @else Pending @endif | {{ $listing->is_featured ? '⭐' : '—' }} | View Edit @if(!$listing->admin_approved) @endif |