Ejemplo n.º 1
0
 /**
  * Show a stream
  * 
  * @param  int $id The id of the stream
  * @return void
  */
 public function show($id)
 {
     $stream = Stream::findOrFail($id);
     $stream->access_counter++;
     $stream->save();
     $this->title($stream->title);
     $this->pageView('streams::show', compact('stream'));
 }