@extends('layout') @section('title','Cart') @section('meta:title', 'AccessWorld: Cart') @section('meta:description', 'View, modify or checkout products in your cart.') @section('header') @stop @section('content') {{--BANNER--}}
My Cart
  • Service Name
    Period
    Price
  • @foreach(Cart::content() as $rowId => $item)
  • @if($discount = $item->discount)
    Discounted
    @endif
    {{ str_limit($item->name, 25) }}
    {{ $item->options->service->name }} @if(!is_null($item->options->renew)) (Renewal) @endif
    {{ $item->options->service->slug == 'domain' || $item->options->service->slug == 'ssl-certificate' ? $item->qty.' Year(s)' : get_actual_term($item->qty).' Month(s)' }}
    @if(intval($item->discount) > 0) {{ currency($item->subtotal) }} @endif

    {{ currency($item->discountedTotal()) }}

  • @endforeach
Payment Method eSewa
{{csrf_field()}}
@stop @push('scripts') @endpush