@extends('layouts.frontend.master') @section('title', 'BMF') @section('css') @endsection @section('style') @endsection @section('content')
image
@csrf

{{request()->user()->name ?? 'Something worng!'}}

{{request()->user()->email ?? ''}}

@if(!Auth::check()) @endif

Share your Contact Details

Checkout

    @php $totalAmount = 0; @endphp @foreach ($cartItems as $key => $value) @php $contest = $value->item; @endphp
  • {{$contest->title}}

    ({{$value->quantity}} x ${{$value->price}})
    ${{$value->price * $value->quantity}}
  • @php $totalAmount += $value->price * $value->quantity @endphp @endforeach
  • Total

    ${{$totalAmount}}
s
@endsection @section('script') @endsection