14 lines
209 B
PHP
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();
|
|
}
|
|
}
|