Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Repositories\ChecklistVersion;
|
|
|
|
class ChecklistVersionService
|
|
{
|
|
private $checklistversionRepository;
|
|
|
|
public function __construct(ChecklistVersion $checklistversionRepository)
|
|
{
|
|
$this->checklistversionRepository = $checklistversionRepository;
|
|
}
|
|
|
|
public function save(array $data)
|
|
{
|
|
if (isset($data['id'])) {
|
|
$checklistversion = $this->checklistversionRepository->findOrFail($data['id']);
|
|
$checklistversion->update($data);
|
|
} else {
|
|
$checklistversion = $this->checklistversionRepository->create($data);
|
|
}
|
|
|
|
return $checklistversion;
|
|
}
|
|
|
|
public function delete($id)
|
|
{
|
|
$checklistversion = $this->checklistversionRepository->findOrFail($id);
|
|
$checklistversion->delete();
|
|
}
|
|
|
|
public function get($id)
|
|
{
|
|
return $this->checklistversionRepository->findOrFail($id);
|
|
}
|
|
|
|
public function getAll()
|
|
{
|
|
return $this->checklistversionRepository->all();
|
|
}
|
|
|
|
public function with(array $children)
|
|
{
|
|
return $this->checklistversionRepository->with($children)->get();
|
|
}
|
|
|
|
public function getOneWith($id, array $children)
|
|
{
|
|
return $this->checklistversionRepository->with($children)->findOrFail($id);
|
|
}
|
|
} |