@extends('layouts/gnr_layout') @section('title', '| Add Module') @section('content')
New Module
{!! Form::open(array('url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::label('projectName', 'Project:', ['class' => 'control-label pull-left']) !!}
@php $projectNames = DB::table('gnr_project')->select('id','name','projectCode')->orderBy('projectCode')->get(); @endphp

{!! Form::label('branchName', 'Branch:', ['class' => 'control-label pull-left']) !!}
@php $branchNames = DB::table('gnr_branch')->select('id','name','branchCode')->orderBy('branchCode')->get(); @endphp
{!! Form::label('moduleName', 'Module:', ['class' => 'control-label pull-left']) !!}
@php $moduleNames = DB::table('gnr_module')->select('id','name','code')->orderBy('code')->get(); @endphp

{!! Form::label('applicableAll', 'Applicable To All:', ['class' => 'control-label pull-left']) !!}
{{ Form::checkbox('applicableAll',1, null, ['class' => '','id'=>'applicableToAll']) }}
{!! Form::button('Search', ['id' => 'search', 'class' => 'btn btn-info','type'=>'button']) !!}
SL Branch Name Start Date
{!! Form::button('Search', ['id' => 'searchBtn', 'class' => 'btn btn-info','type'=>'button']) !!}
{!! Form::close() !!}
@endsection