@extends('admin.dashboard') @section('admin')

@foreach($products as $key => $item) @endforeach
الرقم الصورة اسم المنتج السعر الخصم السعر بعد الخصم الكمية الحالة
{{ $key+1 }} {{ $item->product_name }} {{ $item->selling_price }} @if ($item->discount_price == NULL) لا يوجد خصم @else @php // $amount = $item->selling_price - $item->discount_price; $discount = ($item->discount_price/$item->selling_price) * 100; @endphp {{ round($discount) }}% @endif @if ($item->discount_price == NULL) {{$item->selling_price}} @else @php //$discount = ($item->discount_price/$item->selling_price) * 100; //$finalPrice = ($item->selling_price / 100) - $item->discount_price ; $finalPrice = round($item->selling_price - ($item->selling_price * $item->discount_price / 100)); @endphp {{$finalPrice}} @endif {{ $item->product_qty }} @if($item->status == 1) فعال @else غير فعال @endif
الرقم الصورة اسم المنتج السعر السعر بعد الخصم الكمية الخصم الحالة
@endsection