model = $model; } public function findById($id) { return $this->model->orderBy('created_at', 'DESC')->where('location_countries.id', $id)->first(); } public function viewAll(){ return $this->model->get(); } }