@extends('commons.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('utility_charges.layouts.partials._alert')

{{App\Language::trans('Information')}}

{!! Form::label('code', App\Language::trans('Code'), ['class'=>'control-label col-md-4']) !!}

{{$model->code}}

{!! Form::label('text', App\Language::trans('Name'), ['class'=>'control-label col-md-4']) !!}

{{$model->name}}

{!! Form::label('amount', App\Language::trans('Amount'), ['class'=>'control-label col-md-4']) !!}

{{$model->amount}}

{!! Form::label('room_type', App\Language::trans('Room Type'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_room_type_string('room_type')}}

{!! Form::label('starting_date', App\Language::trans('From Month'), ['class'=>'control-label col-md-4']) !!}

{{$model->setDate($model->starting_date)}}

{!! Form::label('ending_date', App\Language::trans('To Month'), ['class'=>'control-label col-md-4']) !!}

{{$model->setDate($model->ending_date)}}

{!! Form::label('implementation_date', App\Language::trans('Implementation Date'), ['class'=>'control-label col-md-4']) !!}

{{$model->code}}

{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_status_string('status')}}

{!! Form::label('remark', App\Language::trans('Remark'), ['class'=>'control-label col-md-4']) !!}

{{$model->code}}

{!! Form::close() !!} @stop @section('script') $(".input-daterange").datepicker({ format: "dd-mm-yyyy", }); @stop