@extends('layouts.app')
@section('content')
@if (! CartCollection::isEmpty())
@endif
@if ($draft)
{{ $draft ? $draft->type : '' }}
@if (isset($queriedProducts))
@foreach($queriedProducts as $product)
- {{ $product->name }}
- {{ $draft->type == 'cash' ? $product->cash_price : $product->credit_price }}
-
@endforeach
@endif
@endif
@endsection