@extends('layout.master') @section('title',__('basic.遊戲管理')) @section('content-title') {{__('basic.遊戲管理')}} @endsection {{-- 清單頁 --}} @section('content')
@csrf @method('GET')
{{-- {{ var_dump($data) }} --}} @for($d=0;$d @endfor
{{ __('basic.ItemIndex') }} {{ __('basic.Name') }} {{ __('basic.WordPressSkuID') }} {{ __('basic.Description') }}
{{ $d+1 }} {{ $row->name }} {{ $row->wp_id ?? '--' }} {{ $row->description ?? '--' }}
@endsection {{-- 明細頁 --}} @extends('layout.dialog_detail') {{-- @section('detail-title',__('basic.Tag')) --}} @section('detail-content')
*{{ __('basic.Name') }}
*{{ __('basic.WordPressSkuID') }}
{{ __('basic.Description') }}
@endsection