/**
  * Remove the specified caloncustomer from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     CalonCustomer::destroy($id);
     Followup::where('calon_customer_id', '=', $id)->delete();
     return Redirect::route('admin.calon_customer.index')->with('message', 'berhasil hapus calon customer');
 }