128 lines
6.9 KiB
PHP
128 lines
6.9 KiB
PHP
@extends('layouts.frontend')
|
|
|
|
@section('title', 'Keranjang Belanja')
|
|
|
|
@section('content')
|
|
<!-- Single Page Header -->
|
|
<div class="container-fluid page-header py-5">
|
|
<h1 class="text-center text-white display-6">Keranjang Belanja</h1>
|
|
<ol class="breadcrumb justify-content-center mb-0">
|
|
<li class="breadcrumb-item"><a href="{{ url('/') }}">Home</a></li>
|
|
<li class="breadcrumb-item active text-white">Cart</li>
|
|
</ol>
|
|
</div>
|
|
|
|
<!-- Cart Page -->
|
|
<div class="container-fluid py-5">
|
|
<div class="container py-5">
|
|
<div class="table-responsive">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Produk</th>
|
|
<th scope="col">Nama</th>
|
|
<th scope="col">Harga</th>
|
|
<th scope="col">Jumlah</th>
|
|
<th scope="col">Total</th>
|
|
<th scope="col">Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@php $total_belanja = 0; @endphp
|
|
@forelse($cart as $id => $details)
|
|
@php
|
|
$total = $details['price'] * $details['quantity'];
|
|
$total_belanja += $total;
|
|
@endphp
|
|
<tr>
|
|
<th scope="row">
|
|
<div class="d-flex align-items-center">
|
|
<img src="{{ $details['photo'] ? asset('storage/' . $details['photo']) : asset('template/frontend/img/vegetable-item-3.png') }}"
|
|
class="img-fluid me-5 rounded-circle" style="width: 80px; height: 80px;"
|
|
alt="">
|
|
</div>
|
|
</th>
|
|
<td>
|
|
<p class="mb-0 mt-4">{{ $details['name'] }}</p>
|
|
</td>
|
|
<td>
|
|
<p class="mb-0 mt-4">Rp {{ number_format($details['price'], 0, ',', '.') }}</p>
|
|
</td>
|
|
<td>
|
|
<div class="input-group quantity mt-4" style="width: 100px;">
|
|
<div class="input-group-btn">
|
|
<button class="btn btn-sm btn-minus rounded-circle bg-light border"
|
|
onclick="this.parentNode.parentNode.querySelector('input').stepDown()">
|
|
<i class="fa fa-minus"></i>
|
|
</button>
|
|
</div>
|
|
<input type="text" class="form-control form-control-sm text-center border-0"
|
|
value="{{ $details['quantity'] }}">
|
|
<div class="input-group-btn">
|
|
<button class="btn btn-sm btn-plus rounded-circle bg-light border"
|
|
onclick="this.parentNode.parentNode.querySelector('input').stepUp()">
|
|
<i class="fa fa-plus"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<p class="mb-0 mt-4">Rp {{ number_format($total, 0, ',', '.') }}</p>
|
|
</td>
|
|
<td>
|
|
<form action="{{ route('cart.remove') }}" method="POST">
|
|
@csrf
|
|
@method('DELETE')
|
|
<input type="hidden" name="id" value="{{ $id }}">
|
|
<button class="btn btn-md rounded-circle bg-light border mt-4">
|
|
<i class="fa fa-times text-danger"></i>
|
|
</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="6" class="text-center py-5">
|
|
<h4>Keranjang belanja masih kosong.</h4>
|
|
<a href="{{ route('shop') }}"
|
|
class="btn btn-primary rounded-pill px-4 py-2 mt-3 text-white">Belanja Sekarang</a>
|
|
</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@if (count($cart) > 0)
|
|
<div class="row g-4 justify-content-end">
|
|
<div class="col-sm-8 col-md-7 col-lg-6 col-xl-4">
|
|
<div class="bg-light rounded">
|
|
<div class="p-4">
|
|
<h1 class="display-6 mb-4">Total <span class="fw-normal">Belanja</span></h1>
|
|
<div class="d-flex justify-content-between mb-4">
|
|
<h5 class="mb-0 me-4">Subtotal:</h5>
|
|
<p class="mb-0">Rp {{ number_format($total_belanja, 0, ',', '.') }}</p>
|
|
</div>
|
|
<div class="d-flex justify-content-between">
|
|
<h5 class="mb-0 me-4">Pengiriman</h5>
|
|
<div class="">
|
|
<p class="mb-0">Flat Rate: Rp 10.000</p>
|
|
</div>
|
|
</div>
|
|
<p class="mb-0 text-end"></p>
|
|
</div>
|
|
<div class="py-4 mb-4 border-top border-bottom d-flex justify-content-between px-4">
|
|
<h5 class="mb-0 ps-4 me-4">Total</h5>
|
|
<p class="mb-0 pe-4">Rp {{ number_format($total_belanja + 10000, 0, ',', '.') }}</p>
|
|
</div>
|
|
<a href="{{ route('checkout') }}"
|
|
class="btn border-secondary rounded-pill px-4 py-3 text-primary text-uppercase mb-4 ms-4"
|
|
type="button">Proses Checkout</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endsection
|