@extends('template.app') @section('meta') @endsection @section('title') Update Pricelist @endsection @section('styles') @endsection @section('content')
@csrf @method('PATCH')
@php $detail_value = json_decode($data->detail_value);@endphp @if(!empty($detail_value) && count($detail_value) > 0) @php $i = 0; @endphp @foreach ($detail_value as $value)
@if($i == 0)

@else

@endif
@php $i++; @endphp @endforeach @else

@endif
Back
@endsection @section('scripts') @endsection