@extends('layouts.master')
@section('title') Generate Building @stop
@section('content')
Generate Report
{{ Form::open(['role' => 'form', 'action' => 'ReportController@getGenerate', 'method' => 'GET']) }}
{{ Form::label('building_id', 'Building') }}
{{ Form::select('building_id', $buildings, null, ['class' => 'form-control']) }}
{{ Form::submit('Generate Report', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}
@stop