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

Manage custom digital products and services.

Create Product
@if($customProducts->count())
@foreach($customProducts as $product) @endforeach
Title Price Security Status Created Actions
{{ $product->title }} {{ $product->is_free ? 'Free' : '₹'.number_format($product->price, 0) }} {{ $product->contentSecurityLabel() }} {{ ucfirst($product->status) }} {{ $product->created_at->format('M d, Y') }}
@else @endif
@endsection @push('scripts') @if($customProducts->count()) @endif @endpush