@extends('backend.app') @section('content')

Product Discount List

@can('discount.create') Add New Product Discount @endcan
@foreach($items as $item) @endforeach
Product Image Sell Price Discount Type Discount Amount After Discount Action
{{$item->name}}
friend
{{$item->sell_price}} {{$item->discount_type}} {{$item->dicount_amount}} {{$item->after_discount}} @can('discount.edit') @endcan @can('discount.delete') @endcan
@endsection