47 lines
926 B
PHP
47 lines
926 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Repositories;
|
|
|
|
use Modules\Admin\Models\Department;
|
|
|
|
|
|
class DepartmentRepository implements DepartmentInterface
|
|
{
|
|
protected $model;
|
|
|
|
public function __construct(Department $model)
|
|
{
|
|
$this->model = $model;
|
|
}
|
|
|
|
public function findAll()
|
|
{
|
|
return Department::get();
|
|
}
|
|
|
|
public function getDepartmentById($departmentId)
|
|
{
|
|
return Department::findOrFail($departmentId);
|
|
}
|
|
|
|
public function delete($departmentId)
|
|
{
|
|
Department::destroy($departmentId);
|
|
}
|
|
|
|
public function create(array $departmentDetails)
|
|
{
|
|
return Department::create($departmentDetails);
|
|
}
|
|
|
|
public function update($departmentId, array $newDetails)
|
|
{
|
|
return Department::where('department_id', $departmentId)->update($newDetails);
|
|
}
|
|
|
|
|
|
public function pluck(){
|
|
return Department::pluck('name','id');
|
|
}
|
|
}
|