{{ Form::open(array('url' => url('/schools/' . $school->id . '/download-schedule'), 'name' => 'download-schedule', 'target' => '_blank', 'method' => 'post')) }} {{ Form::hidden('school_id', $school->id) }}

Use this form to download, export, or print your school's schedule.

Options

{{ Form::label('format', 'Format') }} {{ Form::select('format', $options->format) }}

{{ Form::label('duration', 'Duration') }} {{ Form::select('duration', $options->duration) }}
{{ Form::label('range', 'Week Containing', array('style' => 'width: 125px;')) }} {{ Form::text('range', date('n/j/Y', time()), array('style' => 'width: 125px')) }}


{{ Form::label('is_dismiss', 'Dismiss Time') }} {{ Form::checkbox('is_dismiss', 1, 1, array('id' => 'is_dismiss')) }}
{{ Form::label('is_depart', 'Depart Time') }} {{ Form::checkbox('is_depart', 1, 1, array('id' => 'is_depart')) }}
{{ Form::label('is_return', 'Return Time') }} {{ Form::checkbox('is_return', 1, 1, array('id' => 'is_return')) }}


{{ Form::label('is_bold_host', 'Bold Host') }} {{ Form::checkbox('is_bold_host', 1, 1, array('id' => 'is_bold_host', 'data-limit-to-format' => 'pdf')) }}
{{ Form::label('is_group_by_date', 'Group by Date') }} {{ Form::checkbox('is_group_by_date', 1, 1, array('id' => 'is_group_by_date', 'data-limit-to-format' => 'pdf')) }}
{{ Form::label('is_logo', 'Show Logo') }} {{ Form::checkbox('is_logo', 1, 1, array('id' => 'is_logo', 'data-limit-to-format' => 'pdf')) }}


@foreach ($options->seasons as $season => $season_activities)

{{ ucfirst(strtolower($season)) }}

@foreach ($options->activities as $slug => $name) @if (Helpers::strEqual($slug, $season_activities))
@endif @endforeach
@endforeach


Select All Clear All
{{ Form::close() }}