@extends('layout') @section('content')

Welcome "{{ Auth::user()->username }}" to the protected page!

Your user ID is: {{ Auth::user()->id }}

Users:

@foreach($users as $user)

{{ $user->id }}

@endforeach @stop