@extends('layouts/microfin_layout') @section('title', '| Report Configuration') @section('content')
Report Configuration
{!! Form::open(array('url' => '', 'role' => 'form','class' => 'form-horizontal form-groups')) !!}
{!! Form::label('reportHeaderLine1', 'Report Header Line #1:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('reportHeaderLine1',$damageData['reportConfiguration']['reportHeaderLine1'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'reportHeaderLine1', 'type' => 'text']) !!}
{!! Form::label('reportHeaderLine2', 'Report Header Line #2:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('reportHeaderLine2',$damageData['reportConfiguration']['reportHeaderLine2'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'reportHeaderLine2', 'type' => 'text']) !!}
{!! Form::label('reportHeaderLine3', 'Report Header Line #3:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('reportHeaderLine3',$damageData['reportConfiguration']['reportHeaderLine3'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'reportHeaderLine3', 'type' => 'text']) !!}
{!! Form::label('reportFooterLine1', 'Report Footer Line #1:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('reportFooterLine1',$damageData['reportConfiguration']['reportFooterLine1'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'reportFooterLine1', 'type' => 'text']) !!}
{!! Form::label('reportFooterLine2', 'Report Footer Line #2:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('reportFooterLine2',$damageData['reportConfiguration']['reportFooterLine2'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'reportFooterLine2', 'type' => 'text']) !!}
{!! Form::label('showBranchAddressOnReport', 'Show Branch Address On Report:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::select('showBranchAddressOnReport',($damageData['boolean']),isset($damageData['reportConfiguration']['showBranchAddressOnReport']) ? (int)$damageData['reportConfiguration']['showBranchAddressOnReport'] : '', array('class'=>'form-control reportConfig', 'id' =>'showBranchAddressOnReport')) !!}
{!! Form::label('nameBeforePomisReports', 'Name Before Pomis Reports:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('nameBeforePomisReports',$damageData['reportConfiguration']['nameBeforePomisReports'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'nameBeforePomisReports', 'type' => 'text']) !!}
{!! Form::label('showOrganizationLogoOnAllReport', 'Show Organization Logo On All Report:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::select('showOrganizationLogoOnAllReport',($damageData['boolean']) , isset($damageData['reportConfiguration']['showOrganizationLogoOnAllReport']) ? (int)$damageData['reportConfiguration']['showOrganizationLogoOnAllReport'] : '', array('class'=>'form-control reportConfig', 'id' =>'showOrganizationLogoOnAllReport')) !!}
{!! Form::label('labelNameForServiceCharge', 'Label Name For Service Charge:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::text('labelNameForServiceCharge',$damageData['reportConfiguration']['labelNameForServiceCharge'] ?? '', ['class' => 'form-control reportConfig', 'id' => 'labelNameForServiceCharge', 'type' => 'text']) !!}
{!! Form::label('isHeaderFooterWillShowInPassbookCheckingReport', 'Is Header Footer Will Show In Passbook Checking Report:', ['class' => 'col-sm-3 control-label reportConfig']) !!}
{!! Form::select('isHeaderFooterWillShowInPassbookCheckingReport',($damageData['boolean']), isset($damageData['reportConfiguration']['isHeaderFooterWillShowInPassbookCheckingReport']) ? (int)$damageData['reportConfiguration']['isHeaderFooterWillShowInPassbookCheckingReport'] : '', array('class'=>'form-control reportConfig', 'id' =>'isHeaderFooterWillShowInPassbookCheckingReport')) !!}
{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection