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

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

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

{{$model->name}}

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

{{$model->display_relationed('store','name')}}

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

{{$model->valid_duration}}

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

{{$model->getDouble('amount')}}

{!! Form::label('description', App\Language::trans('Description'), ['class'=>'control-label col-md-2']) !!}

{!!nl2br($model->description)!!}

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