@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--}}
@if(Cart::count()>0)
My Cart
  • Service Name
    Action
    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
    {{ Form::open(['route' => ['cart.destroy', $item->rowid], 'method'=>'DELETE']) }} {{--@if(is_null($item->options->renew) && !$item->options->service->isDomain() && !$item->options->service->isSslCertificate())--}} {{----}} {{--Edit--}} {{----}} {{--@endif--}} {{ Form::close() }}
    {{ $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 Options

Please select a payment option before proceeding to checkout.

{{--
--}}
{{ Form::open(['route' => 'cart.checkout', 'id' => 'checkout']) }} {{ Form::close() }}
@else

No items in Cart.

View Services
@endif
@stop @push('scripts') @endpush