/** * Remove the specified pod from storage. * * @param int $id * @return Response */ public function destroy($id) { Pod::destroy($id); return Redirect::route('pods.index'); }