Skip to main content

Delete

Deletes a specific promotion.

Examples

Delete a model by id:

\SureCart\Models\Promotion::delete('8ba8d60f-5277-4e6b-807c-dee8166446d5');

Delete a model directly.

$promotion = \SureCart\Models\Promotion::find('8ba8d60f-5277-4e6b-807c-dee8166446d5');
$promotion->delete();

Response Attributes