Exemplo n.º 1
0
 /**
  * Display a listing of the activities.
  *
  * @return Response
  */
 public function index(TextRepo $repo)
 {
     $texts = $repo->getAll();
     return view('admin.texts.index', compact('texts'));
 }
Exemplo n.º 2
0
 function __construct(TextRepo $text_repo)
 {
     view()->share('texts', $text_repo->getAll());
 }