@extends('admin.layouts.contentLayoutMaster') @section('title','商品資料') @section('vendor-styles') @endsection @section('page-styles') @endsection @section('content')

搜尋

列表

@can('商品管理-商品資料列表-編輯') {{-- --}} {{-- --}} {{-- --}} @endcan
{{-- --}} @if ($products->isNotEmpty()) @foreach ($products as $product) {{-- --}} {{-- --}} @endforeach @else @include('admin.panels.list-no-data') @endif
商品編碼 商品名稱 商品圖片 商品價格商品庫存上下架時間 狀態 操作
{{ $product->code }} {{ $product->name }} $ {{ number_format($product->price) }}{{ $product->stock }} {{ date('Y-m-d', strtotime($product->publish_start_at)) }} ~ {{ date('Y-m-d', strtotime($product->publish_end_at)) }} {{ $product->is_active == true ? '啟用' : '已下架' }} --}} {{--
--}} {{-- @csrf--}} {{-- @method('DELETE')--}} {{-- @can('商品管理-商品資料列表-編輯')--}} {{-- --}} {{-- --}} {{-- --}} {{-- @endcan--}} {{-- @can('商品管理-商品資料列表-刪除')--}} {{-- --}} {{-- --}} {{-- --}} {{-- @endcan--}} {{--
--}} {{--
@endsection @section('vendor-scripts') @endsection @section('page-scripts') @endsection