관리-도구
편집 파일: order-failed.blade.php
@extends('layouts.appss') @section('content') <div class="container py-5"> <div class="row justify-content-center"> <div class="col-md-6 text-center"> <div class="mb-4"> <i class="fa fa-times-circle text-danger" style="font-size: 80px;"></i> </div> <h2 class="mb-3">Payment Failed</h2> <p class="text-muted mb-4"> Unfortunately, your payment could not be processed. @if(isset($order) && $order->id) Order Reference: <strong>#{{ $order->id }}</strong> @endif </p> @if(isset($reason)) <div class="alert alert-danger"> {{ $reason }} </div> @endif <div class="d-flex justify-content-center gap-3 mt-4"> @if(isset($order) && $order->id) <a href="{{ route('order.check-status', $order->id) }}" class="btn btn-outline-secondary"> Check Status </a> @endif <a href="{{ route('cart') }}" class="btn btn-primary"> Back to Cart </a> <a href="{{ route('index') }}" class="btn btn-secondary"> Continue Shopping </a> </div> </div> </div> </div> @endsection