public function deleteLog($id)
 {
     $sms = SMSLog::find($id);
     $sms->delete();
     return Redirect::to('/smslog')->with("success", "SMS Log Deleted Succesfully.");
 }