@extends('layouts.app') @section('title', 'Custom Products') @section('page-title', 'Custom Products') @section('breadcrumb', 'More Products / Custom Products') @section('content')
Back

Welcome to your digital product dashboard

@if(request('sort')) @endif @if(request('status')) @endif
Create
Filters
@if(request('search')) @endif
@if($customProducts->count())
@foreach($customProducts as $product) @endforeach
Title Price Security Status Created Actions
{{ $product->title }} @if($product->is_free) Free @else ₹{{ number_format($product->price, 0) }} @endif {{ $product->contentSecurityLabel() }} {{ ucfirst($product->status) }} {{ $product->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $customProducts->links() }}
@else

No results found

Create videos, audios, PDFs, slides, and articles for your learners.

Create
@endif
@endsection