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

@foreach($products as $key => $item) @endforeach
رقم الصورة اسم المنتج السعر السعر بعد الخصم الخصم حالة المنتج الاجراء
{{ $key+1 }} {{ $item->product_name }} {{ $item->selling_price }} @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 {{-- for calculate discount_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) }}% --}} {{$item->discount_price }}% @endif {{-- for check status --}} @if ($item->status == 1) مفعل @else غير مفعل @endif @if($item->status == 1) @else @endif
رقم الصورة اسم المنتج السعر السعر بعد الخصم الخصم حالة المنتج الاجراء
@endsection