@extends('layouts.app') @push('style') @endpush @section('content')
@php $page_name = 'Product > Discount Product'; $page_number = 0; @endphp @include('layouts.table_top')
Code Number: {{ $item->discount_code }} Type Name: {{ $item->name }} Type: {{ $item->dicount_type }} @if ($item->dicount_type == 'offer') Start Date: {{ $item->start_date }} End Date: {{ $item->end_date }} @endif Discount Type: {{ $item->amount_type }} Amount/value/parcantage: {{ $item->value }}
@foreach ($products as $product) @endforeach
@lang('SL') @lang('Code') @lang('Product SKU') @lang('Name') @lang('Brand') @lang('Category') @lang('Sub Category')
{{ $loop->index + 1 }} {{ $product->product_code }} {{ $product->product_sku }} {{ $product->name }} {{ $product->brand_name }} {{ $product->category_name }} {{ $product->subcat_name }}
@endsection