/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     // delete the project information
     $clients = ProjectsModel::find($id);
     $clients->delete();
     // redirect
     Session::flash('success_message', 'Successfully deleted the project!');
     return Redirect::to('projects/all');
 }