@extends('layouts.frontend.master') @section('title', 'BMF') @section('css') @endsection @section('style') @endsection @section('content')
image
@include('layouts.alerts')
@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 {{ config('app.currency_symbol') }}{{ $value->price }})
    {{ config('app.currency_symbol') }}{{ $value->price * $value->quantity }}
  • @php $totalAmount += $value->price * $value->quantity; @endphp @endforeach
  • Total

    {{ config('app.currency_symbol') }}{{ $totalAmount }}
@endsection @section('script') @endsection