@extends("_master") @section("title") Lorem Ipsum Generator @stop @section("head") @stop @section("content") Back to main page

Lorem Ipsum Generator

In publishing and graphic design, lorem ipsum is a filler text commonly used to demonstrate the graphic elements of a document or visual presentation. Replacing meaningful content that could be distracting with placeholder text may allow viewers to focus on graphic aspects such as font, typography, and page layout.
- Wikipedia

{{ Form::open (array('url' => '/lorem-ipsum', 'method' => 'POST')) }} {{ Form::label('paragraphs', 'How many paragraphs? ') }} @if (isset($text)) {{ Form::text('paragraphs', $text['number']) }} @else {{ Form::text('paragraphs', '5') }} @endif {{ Form::submit('Generate Latin Text!'); }} @if(isset($text))

Here is your Lorem Ipsum text:

@foreach($text['paragraphs'] as $paragraph)

{{ $paragraph }}


@stop