/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Transaction::destroy($id);
     \Session::flash('status', 'The transaction has been deleted successfully.');
     return redirect('admin/transactions');
 }