@if (($login_user->hasPermission('edit deposit plu')) || ($login_user->hasRole('programmer')))
Edit
@endif
@if (($login_user->hasPermission('delete deposit plu')) || ($login_user->hasRole('programmer')))
Delete
@endif
{!! Form::label('lblPlu', 'PLU No:'); !!}
{{$deposit_plu->plu_no}}
{!! Form::label('lblPlu', 'PLU Name:'); !!}
{{$deposit_plu->admin_plu->name}}
{!! Form::label('lblType', 'Type:'); !!}
{{ucfirst($deposit_plu->type)}}
{!! Form::label('lblPrice', 'Price:'); !!}
{{number_format($deposit_plu->admin_plu->price1)}}
{!! Form::label('lblBonus', 'Bonus:'); !!}
{{number_format($deposit_plu->bonus)}}
{!! Form::label('lblCreatedBy', 'Created By:'); !!}
{{(isset($deposit_plu->created_by_name)) ? $deposit_plu->created_by_name->name : '—'}}
{!! Form::label('lblCreatedAt', 'Created At:'); !!}
{{date('Y-m-d - H:i:s', strtotime($deposit_plu->created_at))}}
{!! Form::label('lblUpdatedBy', 'Updated By:'); !!}
{{(isset($deposit_plu->updated_by_name)) ? $deposit_plu->updated_by_name->name : '—'}}
{!! Form::label('lblUpdatedAt', 'Updated At:'); !!}
{{date('Y-m-d - H:i:s', strtotime($deposit_plu->updated_at))}}