Implement API deletes

This commit is contained in:
Joseph Cohen
2015-01-14 01:50:58 -06:00
parent 953ece00cf
commit 2d95b3832d
5 changed files with 47 additions and 1 deletions

View File

@@ -121,7 +121,7 @@ abstract class EloquentRepository
*/
public function destroy($id)
{
$this->model->delete($id);
$this->model->destroy($id);
}
/**