/**
  * Remove the specified resource from storage.
  *
  * @param RentalAgreement $agreement
  * @return Response
  * @throws \Exception
  * @internal param int $id
  */
 public function destroy(RentalAgreement $agreement)
 {
     $agreement->delete();
     Session::flash('flash_message', 'Agreement successfully deleted!');
     return redirect()->action('RentalAgreementController@index');
 }