294 lines
8.1 KiB
PHP
294 lines
8.1 KiB
PHP
@extends('layouts.app')
|
||
|
||
@section('title', 'Checkout - Additional Design')
|
||
|
||
@section('styles')
|
||
<style>
|
||
h1 {
|
||
font-family: 'Abril Fatface', cursive;
|
||
font-size: 2.5rem;
|
||
color: var(--primary-color);
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.checkout-container {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 3rem;
|
||
margin: 2rem 0 3rem 0;
|
||
}
|
||
|
||
.checkout-form,
|
||
.order-summary {
|
||
background: white;
|
||
padding: 2rem;
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.checkout-form h2,
|
||
.order-summary h2 {
|
||
font-family: 'Abril Fatface', cursive;
|
||
font-size: 1.5rem;
|
||
color: var(--primary-color);
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
|
||
.form-group {
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
|
||
.form-group label {
|
||
display: block;
|
||
font-weight: 600;
|
||
margin-bottom: 0.5rem;
|
||
color: var(--primary-color);
|
||
}
|
||
|
||
.form-group input,
|
||
.form-group textarea {
|
||
width: 100%;
|
||
padding: 0.75rem;
|
||
border: 1px solid #ddd;
|
||
border-radius: 4px;
|
||
font-size: 1rem;
|
||
font-family: inherit;
|
||
}
|
||
|
||
.form-group textarea {
|
||
resize: vertical;
|
||
min-height: 100px;
|
||
}
|
||
|
||
.form-group input:focus,
|
||
.form-group textarea:focus {
|
||
outline: none;
|
||
border-color: var(--primary-color);
|
||
box-shadow: 0 0 0 3px rgba(45, 80, 71, 0.1);
|
||
}
|
||
|
||
.order-summary {
|
||
height: fit-content;
|
||
}
|
||
|
||
.order-item {
|
||
padding: 1rem 0;
|
||
border-bottom: 1px solid #eee;
|
||
}
|
||
|
||
.order-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.order-item-name {
|
||
font-weight: 600;
|
||
margin-bottom: 0.25rem;
|
||
}
|
||
|
||
.order-item-details {
|
||
font-size: 0.85rem;
|
||
color: #666;
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.order-item-price {
|
||
text-align: right;
|
||
font-weight: 600;
|
||
color: var(--primary-color);
|
||
}
|
||
|
||
.summary-row {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding: 1rem 0;
|
||
border-bottom: 1px solid #eee;
|
||
}
|
||
|
||
.summary-row.total {
|
||
font-weight: 600;
|
||
font-size: 1.2rem;
|
||
color: var(--primary-color);
|
||
border-top: 2px solid var(--primary-color);
|
||
border-bottom: none;
|
||
padding-top: 1.5rem;
|
||
margin-top: 1rem;
|
||
}
|
||
|
||
.btn-submit {
|
||
width: 100%;
|
||
margin-top: 2rem;
|
||
padding: 1rem;
|
||
background-color: var(--primary-color);
|
||
color: white;
|
||
border: none;
|
||
border-radius: 4px;
|
||
font-size: 1rem;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: var(--transition);
|
||
}
|
||
|
||
.btn-submit:hover {
|
||
background-color: #1f3633;
|
||
}
|
||
|
||
.alert {
|
||
padding: 1rem;
|
||
border-radius: 4px;
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.alert-error {
|
||
background-color: #f8d7da;
|
||
color: #721c24;
|
||
border: 1px solid #f5c6cb;
|
||
}
|
||
|
||
.info-box {
|
||
background: var(--section-light-bg);
|
||
padding: 1rem;
|
||
border-radius: 4px;
|
||
margin-bottom: 1.5rem;
|
||
font-size: 0.9rem;
|
||
color: #666;
|
||
}
|
||
|
||
.back-link {
|
||
display: block;
|
||
text-align: center;
|
||
margin-top: 1.5rem;
|
||
color: var(--primary-color);
|
||
text-decoration: none;
|
||
}
|
||
|
||
.back-link:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.checkout-container {
|
||
grid-template-columns: 1fr;
|
||
gap: 2rem;
|
||
}
|
||
|
||
h1 {
|
||
font-size: 1.8rem;
|
||
}
|
||
}
|
||
</style>
|
||
@endsection
|
||
|
||
@section('content')
|
||
<div class="container">
|
||
<h1>Checkout</h1>
|
||
|
||
@if ($errors->any())
|
||
<div class="alert alert-error">
|
||
<ul style="margin: 0; padding-left: 1.5rem;">
|
||
@foreach ($errors->all() as $error)
|
||
<li>{{ $error }}</li>
|
||
@endforeach
|
||
</ul>
|
||
</div>
|
||
@endif
|
||
|
||
<div class="checkout-container">
|
||
<!-- Checkout Form -->
|
||
<form action="{{ route('order-process') }}" method="POST" class="checkout-form">
|
||
@csrf
|
||
|
||
<h2>Delivery Information</h2>
|
||
|
||
<div class="form-group">
|
||
<label for="customer_name">Full Name</label>
|
||
<input type="text" id="customer_name" name="customer_name" value="{{ old('customer_name') }}" required>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="customer_email">Email Address</label>
|
||
<input type="email" id="customer_email" name="customer_email" value="{{ old('customer_email') }}" required>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="customer_phone">Phone Number</label>
|
||
<input type="tel" id="customer_phone" name="customer_phone" value="{{ old('customer_phone') }}" required>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="shipping_address">Delivery Address</label>
|
||
<textarea id="shipping_address" name="shipping_address" required>{{ old('shipping_address') }}</textarea>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="notes">Order Notes (Optional)</label>
|
||
<textarea id="notes" name="notes" placeholder="Any special instructions or notes for your order...">{{ old('notes') }}</textarea>
|
||
</div>
|
||
|
||
<div class="info-box">
|
||
<strong>Note:</strong> Payment will be processed securely through Yoco. You'll be redirected to complete your card payment after confirming this order.
|
||
</div>
|
||
|
||
<button type="submit" class="btn">Complete Order & Proceed to Payment</button>
|
||
</form>
|
||
|
||
<!-- Order Summary -->
|
||
<div class="order-summary">
|
||
<h2>Order Summary</h2>
|
||
|
||
@foreach($items as $item)
|
||
<div class="order-item">
|
||
<div class="order-item-name">{{ $item['product']->name }}</div>
|
||
|
||
@php
|
||
$stockCost = 0;
|
||
$stockUnit = $item['type'] === 'wallpaper' ? '/m' : '/m²';
|
||
|
||
if ($item['stock']) {
|
||
$stockCost = $item['type'] === 'wallpaper' ? $item['stock']->cost_per_meter : $item['stock']->cost_per_m2;
|
||
}
|
||
@endphp
|
||
|
||
<div class="order-item-details">
|
||
@if($item['stock'])
|
||
<strong>{{ $item['stock']->name }}:</strong> R{{ number_format($stockCost, 2) }}{{ $stockUnit }}<br>
|
||
@endif
|
||
|
||
@if($item['type'] === 'wallpaper')
|
||
<strong>Length:</strong> {{ $item['length'] }}m
|
||
@elseif($item['type'] === 'mural')
|
||
<strong>Dimensions:</strong> {{ $item['width'] }}m × {{ $item['height'] }}m ({{ number_format($item['width'] * $item['height'], 2) }}m²)
|
||
@endif
|
||
|
||
@if($item['quantity'] > 1)
|
||
<br><strong>Quantity:</strong> {{ $item['quantity'] }}
|
||
@endif
|
||
</div>
|
||
<div class="order-item-price">R{{ number_format($item['subtotal'], 2) }}</div>
|
||
</div>
|
||
@endforeach
|
||
|
||
<div class="summary-row">
|
||
<span>Subtotal:</span>
|
||
<span>R{{ number_format($total, 2) }}</span>
|
||
</div>
|
||
|
||
<div class="summary-row">
|
||
<span>Shipping:</span>
|
||
<span>TBD at payment</span>
|
||
</div>
|
||
|
||
<div class="summary-row">
|
||
<span>Tax:</span>
|
||
<span>TBD at payment</span>
|
||
</div>
|
||
|
||
<div class="summary-row total">
|
||
<span>Total:</span>
|
||
<span>R{{ number_format($total, 2) }}</span>
|
||
</div>
|
||
|
||
<a href="{{ route('cart') }}" class="back-link">← Back to Cart</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
@endsection
|