add all controllers logic
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\Attendance;
|
||||
|
||||
use App\Models\LateSlipLog;
|
||||
|
||||
class LateSlipLogCommandService
|
||||
{
|
||||
public function delete(LateSlipLog $log): bool
|
||||
{
|
||||
return (bool) $log->delete();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user