Files
2026-04-07 17:54:26 +05:00

14 lines
253 B
PHP

<?php
namespace App\Containers\Dashboard\Actions\SubSections;
use App\Containers\AppStructure\Models\SubSection;
class DeleteSubSectionAction
{
public function run(SubSection $subSection): bool
{
return $subSection->delete();
}
}