@extends('web.app') @section('main-content')
{{ csrf_field() }}

Order Detail

@foreach ($cartDetail as $orderDetail)
{{ $orderDetail->bike->name }}
₹ {{ $orderDetail->quantity*$orderDetail->bike->ticket_price }}
@endforeach @if(count($cartDetail) > 0)
@if(!empty($cartDetail->phone1)) @else Mobile No : @endif
@else
Shopping Cart Is Empty
@endif
@endsection @push('scripts') @endpush