Example #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  Match $match
  * @return \Illuminate\Http\Response
  */
 public function destroy(Match $match)
 {
     $match->delete();
     return redirect('tekme');
 }