/**
  * Force remove the specified invoice from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function delete($id)
 {
     Invoice::withTrashed()->where('id', $id)->forceDelete();
     Item::withTrashed()->where('invoice_id', $id)->forceDelete();
     return Redirect::route('invoices.index');
 }