@extends('layout.master') @section('title',__('basic.Products')) @section('content-title') {{ __('basic.Products') }} @endsection {{-- 清單頁 --}} @section('content')
@csrf @method('GET')
{{-- --}}
{{-- {{ var_dump($data) }} --}} @for($d=0;$d @endfor
{{ __('basic.Name') }} {{ __('basic.Classification') }} {{ __('basic.Description') }}
{{ $d+1 }} {{ $row->name ?? '--' }} {{ $row->stock_classification_name ?? '--' }} {{ $row->description ?? '--' }}
@endsection {{-- 明細頁 --}} {{-- @extends('layout.dialog_detail') --}} @extends('layout.normal_detail') @section('detail-title',__('basic.Products')) @section('detail-content')

{{ __('basic.Detail') }}

Choose a file to Upload
Or drag and drop the file Here
{{ __('basic.Name') }} *
{{ __('basic.Brand') }} *
{{--
--}} {{--
--}} {{-- --}}
{{ __('basic.Classification') }} *
{{--
{{ __('basic.Category') }} *
--}}
{{ __('basic.UnitofMeasurement') }} *
{{--
{{ __('basic.Price') }} *
--}}
{{ __('basic.Description') }}

客製化選項

@foreach ($data['select']['stock_option'] AS $stock_option_index => $stock_option_value)
{{$stock_option_value['name']}}
@foreach ($stock_option_value['detail'] AS $detail_index => $detail_value) @php $checked = ""; if($detail_value['id']=="l") $checked = "checked"; @endphp
{{ $detail_value['name'] }}
@endforeach {{--
--}}
@endforeach {{--
溫度
容量
--}}

價錢

大杯

{{ __('basic.RecipeDetail') }}

{{-- --}}
#
{{ __('basic.ItemName') }}
{{--
{{ __('basic.Unit') }}
--}}
{{ __('basic.Qty') }}
{{ __('basic.Option') }}
1
{{--
--}}
size
ml
大杯
@endsection