Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Last active December 20, 2015 07:28
Show Gist options
  • Save mateusgf/6093152 to your computer and use it in GitHub Desktop.
Save mateusgf/6093152 to your computer and use it in GitHub Desktop.
@layout('layouts.default')
@section('content')
<h1>{{ ucfirst($username) }} Questions</h1>
@if(!$questions->results)
<p>You've not posted any questions yet.</p>
@else
<ul>
@foreach($questions->results as $question)
<li>
{{ Str::limit(e($question->question), 40) }} -
{{ HTML::link_to_route('question', 'View', $question->id) }}
</li>
@endforeach
</ul>
{{ $questions->links() }}
@endif
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment