@extends('layouts.admin') @section('title', 'Chi Tiết Khuyến Mãi') @section('content-admin')

Chi Tiết Khuyến Mãi

Thông Tin Khuyến Mãi
@if($promotion->loai_khuyen_mai == 1) @endif
Tên Khuyến Mãi {{ $promotion->ten_khuyen_mai }}
Mô Tả {!! Illuminate\Support\Str::limit($promotion->mo_ta,250)!!}
Ngày Bắt Đầu {{ $promotion->ngay_bat_dau }}
Ngày Kết Thúc {{ $promotion->ngay_ket_thuc }}
Loại khuyến mãi @if($promotion->loai_khuyen_mai == 0) Khuyến mãi theo sản phẩm @elseif($promotion->loai_khuyen_mai == 1) Khuyến mãi theo đơn hàng @endif
Hình Thức Giảm Giá @if($promotion->hinh_thuc_giam_gia == 0) Giảm theo số tiền @elseif($promotion->hinh_thuc_giam_gia == 1) Giảm theo phần trăm @endif
Giá Trị Khuyến Mãi @if($promotion->hinh_thuc_giam_gia == 0) {{ number_format($promotion->gia_tri_khuyen_mai, 0, ',', '.') }}đ @elseif($promotion->hinh_thuc_giam_gia == 1) {{ $promotion->gia_tri_khuyen_mai }}% @endif
Số lượng còn: {{ $promotion->so_luong }}
@if($promotion->loai_khuyen_mai == 0)
Sản Phẩm Áp Dụng Khuyến Mãi
@if($promotion->products->isEmpty())

Không có sản phẩm nào được áp dụng khuyến mãi này.

@else @foreach($promotion->products as $product) @php $originalPrice = $product->don_gia; $discountValue = $promotion->hinh_thuc_giam_gia == 0 ? $promotion->gia_tri_khuyen_mai : ($originalPrice * $promotion->gia_tri_khuyen_mai / 100); $discountedPrice = max(0, $originalPrice - $discountValue); $discountPercent = ($discountValue / $originalPrice) * 100; @endphp @endforeach
Tên Sản Phẩm Giá Gốc Giá Khuyến Mãi Phần Trăm Giảm Giá
{{ $product->ten_san_pham }} {{ number_format($originalPrice, 0, ',', '.') }}đ {{ number_format($discountedPrice, 0, ',', '.') }}đ {{ number_format($discountPercent, 2) }}%
@endif
@elseif($promotion->loai_khuyen_mai == 1)
Đơn Hàng Áp Dụng Khuyến Mãi: {{ $promotion->ten_khuyen_mai }}
Danh Sách Đơn Hàng
@if($orders->isEmpty())

Không có đơn hàng nào áp dụng khuyến mãi này.

@else @foreach($orders as $order) @endforeach
Mã Đơn Hàng Khách Hàng Ngày Đặt Tổng tiền Trạng Thái
#{{ $order->id }} @if($order->ho_ten == null) {{ $order->User->ho_ten }} @else {{ $order->ho_ten }} @endif {{ $order->created_at }} {{ number_format($order->tong_tien, 0, ',', '.') }}đ @if($order->trang_thai == 0) Đang Xử Lý @elseif($order->trang_thai == 1) Đang Giao @elseif($order->trang_thai == 2) Hoàn Tất @elseif($order->trang_thai == 3) Đã Hủy @elseif($order->trang_thai == 4) Trả Hàng @elseif($order->trang_thai == 5) Đặt Hàng @endif
@endif
@endif
@endsection