@extends('layouts.app') @section('title', 'Products') @section('content')

Products

New product Export CSV

Sort: Newest Title A–Z Title Z–A Filter: All Active Draft

Digital products

@csrf

@forelse($products as $p) @empty @endforelse
Title Price Status Created
{{ $p->title }} {{ number_format($p->price, 2) }} {{ $p->status }} {{ $p->created_at->format('M j, Y') }} @if($p->file_path) Download @endif Edit @csrf @method('DELETE')
No products yet.
@if($products->hasPages()) @endif
@endsection