@extends('layouts.app') @push('css') @endpush @section('content') @include('layouts.header', ['title' => 'Danh sách mã giảm giá'])
Danh sách mã giảm giá
Thêm mã giảm giá
@forelse ($discounts as $discount) @php $percent = $discount->discount_amount; $formattedPercent = (floor($percent) == $percent) ? number_format($percent, 0) : number_format($percent, 1); @endphp @empty @endforelse
# Mã giảm giá Mô tả Phần trăm giảm Thao tác
{{ $loop->iteration }} {{ $discount->discount_code }} {{ $discount->description }} {{ $formattedPercent }}% Edit
@csrf @method('DELETE')
Không có mã giảm giá nào nào
@endsection @push('js') @if (session('success')) @endif @endpush