@extends('frontend.include.layout') @section('content')
@if($cart_details) @foreach($cart_details as $key => $cart_detail) @php $publish_asset_detail= \App\Models\PublishedAssetDetails::where('asset_row_id',$cart_detail->asset_id)->first(); $assetthumbnailmmagedisplay=\App\Models\AssetThumbnailImages::select('thumbnailimages')->where('asset_id',$publish_asset_detail->id)->first(); @endphp @php $sub_total=$sub_total+\App\Http\Controllers\frontend\AssetDetailsController::cartassetprice($publish_asset_detail->id); @endphp @endforeach @endif
Image Name Price Remove
#
{{ $publish_asset_detail->asset_name }}
@php echo $money = \App\Http\Controllers\frontend\AssetDetailsController::displayassetprice($publish_asset_detail->id); @endphp

Cart Totals

Cart Subtotal {{ $country_price_symbol }} {{ $sub_total }}
@php if(auth()->user()) { @endphp
@csrf @if($sub_total == 0) @else @endif
@php } else { @endphp Proceed To CheckOut @php } @endphp
@endsection @section('script') @include('frontend.include.asset-js') @endsection