@extends('layouts.frontend') @section('content') @include('layouts.frontend-partial.breadcrumb') {{-- ================================ cart section begins here ================================= --}}
@php($orderType = [1 => 'Link insertion', 2 => 'Guest posting']) @php($slNo = 0) @foreach ($cart as $id => $row) @php($row = (object)$row) @endforeach
SL Details Final Price
{{++$slNo}}

{{$row->title}}

  • Order type {{$orderType[$row->billing_type]}}
  • Base price {{$row->general_price}}
  • @if($row->niche == "others")
  • Others price +${{$row->other_price}}
  • @endif
${{$row->price}}
Subtotal ${{number_format($subtotal, 2)}}
Discount ${{number_format($discount, 2)}}
Total Amount ${{number_format($totalAmount, 2)}}
{{-- ================================ cart section ends here ================================= --}} @endsection @push('footerPartial') @endpush