@extends('plugins/ecommerce::orders.master') @section('title', __('Checkout')) @section('content') @if (Cart::instance('cart')->isNotEmpty()) @if (is_plugin_active('payment') && $orderAmount) @include('plugins/payment::partials.header') @endif {!! $checkoutForm->renderForm() !!} @if (is_plugin_active('payment')) @include('plugins/payment::partials.footer') @endif @else
{!! BaseHelper::clean(__('No products in cart. :link!', ['link' => Html::link(BaseHelper::getHomepageUrl(), __('Back to shopping'))])) !!}
@endif @stop @push('footer') @endpush