Files
alrahma_sunday_school_api/app/Services/Attendance/LateSlipLogCommandService.php
T
2026-03-11 17:53:15 -04:00

14 lines
209 B
PHP

<?php
namespace App\Services\Attendance;
use App\Models\LateSlipLog;
class LateSlipLogCommandService
{
public function delete(LateSlipLog $log): bool
{
return (bool) $log->delete();
}
}