@extends('layouts/pos_layout') @section('title', '| Branch Employee Config Date Wise Details') @section('content')
Branch Employee Config Date Wise Details
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('branch_id', 'Branch:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('branch_id', $incentiveConfigDateWise[0]->branch->name, ['class' => 'form-control', 'id' => 'branch_id', 'type' => 'text', 'readonly' => true]) !!}
{!! Form::label('active_date', 'Active Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('active_date', date('d-m-Y', strtotime($incentiveConfigDateWise[0]->active_date)), ['class' => 'form-control', 'id' => 'active_date', 'type' => 'text', 'readonly' => true]) !!}

@if($incentiveConfigDateWise) @foreach($incentiveConfigDateWise as $record) @endforeach @endif
Step Employee
{{ $record->incentiveStep->name }} {{ $record->employee->name }}
{!! Form::close() !!}
@endsection