@extends('admin.layout') @section('admin')

Annonces ({{ $annonces->total() }})

@foreach($annonces as $ad) @endforeach
AnnonceAuteurPrixStatutVuesActions
{{ $ad->title }} {{ $ad->ref }} · {{ $ad->ville }} {{ $ad->user?->email }} {{ $ad->price_label }} {{ $ad->status }} {{ number_format($ad->views, 0, ',', ' ') }}
@if($ad->status !== 'online')
@csrf @method('put')
@endif
@csrf @method('put')
@csrf @method('put')
{{ $annonces->links('partials.pagination') }}
@endsection