예제 #1
0
 /**
  * Remove the specified timeline from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Timeline::destroy($id);
     return Redirect::route('timelines.index');
 }