I have a problem that I think is very simple ... I need to show the username logged in my views ... How do I do this?
this is one of the views
@extends('layouts.template')
@section('body')
<h3>List_Lists</h3>
<p>
<a href="{{ URL::to('list/create') }}">Adicionar Lista</a> <br />
</p>
<ul style="list-style:none;">
@foreach($lists as $lista)
<li class="task">
<a href="{{ URL::to('list') }}/{{ $lista->id }}">{{ $lista->titulo }}
({{ count( $lista->tasks ) }} Tasks)</a> <br />
</li>
@endforeach
</ul>
@stop