update deploy
This commit is contained in:
21
app/Actions/Course/DeleteCourseAction.php
Normal file
21
app/Actions/Course/DeleteCourseAction.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Course;
|
||||
|
||||
use App\Events\ModelChanged;
|
||||
use App\Models\Course;
|
||||
use App\Repositories\Contracts\CourseRepositoryInterface;
|
||||
|
||||
class DeleteCourseAction
|
||||
{
|
||||
public function __construct(private CourseRepositoryInterface $repository) {}
|
||||
|
||||
public function execute(Course $course): bool
|
||||
{
|
||||
$this->repository->delete($course);
|
||||
|
||||
ModelChanged::dispatch(Course::class, 'deleted');
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user