@extends('layouts.guest') @section('content')

Items In My Basket

@php $total = 0; @endphp @if ($result_items->total() == 0)
No item found in basket
Shop books
@endif @php $ids = []; @endphp @foreach ($result_items as $item) @php $book = json_encode($item->product); $book = json_decode($book); @endphp @if (!empty($book->slug) && !in_array($book->slug,$ids)) @php $total = $total + $book->price; @endphp
@include('includes.books')
@endif @php array_push($ids, $book->slug); @endphp @endforeach
Your Sub-total

Sub-total: $@php echo number_format($total, 2) @endphp


@if($total > 0) Continue to Checkout @endif
@endsection