36 lines
707 B
PHP
36 lines
707 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Admin\Repositories;
|
||
|
|
||
|
use Modules\Admin\Models\Complaint;
|
||
|
|
||
|
|
||
|
class ComplaintRepository implements ComplaintInterface
|
||
|
{
|
||
|
public function findAll()
|
||
|
{
|
||
|
return Complaint::get();
|
||
|
}
|
||
|
|
||
|
public function getComplaintById($complaintId)
|
||
|
{
|
||
|
return Complaint::findOrFail($complaintId);
|
||
|
}
|
||
|
|
||
|
public function delete($complaintId)
|
||
|
{
|
||
|
Complaint::destroy($complaintId);
|
||
|
}
|
||
|
|
||
|
public function create(array $complaintDetails)
|
||
|
{
|
||
|
return Complaint::create($complaintDetails);
|
||
|
}
|
||
|
|
||
|
public function update($complaintId, array $newDetails)
|
||
|
{
|
||
|
return Complaint::where('complaint_id', $complaintId)->update($newDetails);
|
||
|
}
|
||
|
|
||
|
}
|