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

{{App\Language::trans('Detail Form')}}

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

{{$model->code}}

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

{{ucfirst($model->type)}}

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

{{$model->rate}}

{!! 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->remark}}

{!! Form::close() !!} @endsection @section('script') @endsection