@extends('layouts.admin') @section('content') @php($editing=$special->exists)

Promotions

{{ $editing ? 'Edit special' : 'Add special' }}

Save as a draft while you work, or choose Published to make the special eligible for the public website immediately. The global “Display published specials publicly” switch in Business Settings can still hide all specials without deleting them.

@csrf @if($editing) @method('PUT') @endif
Applies to product categories

Optional. Choose categories when the special applies to a group of products.

@foreach($categories as $category) @endforeach
Applies to specific products

Optional. Choose individual products when the offer is product-specific.

@foreach($products as $product) @endforeach
Back
@if($editing)
@csrf @method('DELETE')
@endif @endsection