Exemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     View::share('title', 'Felhasználók');
     $this->layout->content = View::make('admin.users.index')->with('users', User::all(['id', 'first_name', 'last_name', 'created_at', 'last_login', 'email', 'phone']));
 }