Product/Resources/views/product/_status.blade.php

15 lines
825 B
PHP

@php
$route = explode('.', Route::currentRouteName());
@endphp
{!! Form::open(['method' => 'PUT','route' => [$route[0].'.update', $model->id],'class'=>'']) !!}
<div class="form-check form-switch form-check-custom form-check-solid" style="display: block!important;">
<input class="form-check-input h-20px w-30px status" {{ $model->status==1 ? 'checked' : '' }} type="checkbox" name="status" id="status"/>
<input type="hidden" value="{{$model->category_id}}" name="category_id">
<input type="hidden" value="{{$model->unit_id}}" name="unit_id">
<input type="hidden" value="{{$model->harga_beli_ppn}}" name="harga_beli_ppn">
<input type="hidden" value="{{$model->harga_beli_non_ppn}}" name="harga_beli_non_ppn">
<input type="hidden" value="{{$model->name}}" name="name">
</div>
{!! Form::close() !!}