My service is like this :
public function delete($store_id)
{
$result = $this->favorite_repository->delete($store_id);
dd($result);
}
My repository is like this :
public function delete($store_id)
{
$data = self::where('favoritable_id', $store_id)->delete();
return $data;
}
There exist error :
Missing argument 1 for App\Repositories\FavoriteRepository::delete(), called in C:\xampp\htdocs\mysystem\app\Repositories\FavoriteRepository.php on line 45 and defined
Can you help me?
UPDATE
The delete function in the EloquentRepository is like this :
public function delete($id)
{
// Find the given instance
$deleted = false;
$instance = $id instanceof Model ? $id : $this->find($id);
if ($instance) {
// Delete the instance
$deleted = $instance->delete();
// Fire the deleted event
$this->getContainer('events')->fire($this->getRepositoryId().'.entity.deleted', [$this, $instance]);
}
return [
$deleted,
$instance,
];
}