@extends('front.layout') @section('title') {{__('Checkout')}} @endsection @section('css') @endsection @section('content') {{__('Home')}} {{__('Cart')}} {{__('Checkout')}} {{__('Add product')}} {{__('Favourites')}} @csrf {{__('Product')}} {{__('Description')}} {{__('Price')}} {{__('Quantity')}} {{__('Commission')}} {{__('Cart empty')}} {{__('Customer info')}} {{__('Select state')}} @foreach($states as $state) {{$state->name}} @endforeach {{__('Select state first')}} {{__('Select brand')}} @foreach($brands as $brand) {{$brand}} @endforeach {{__('Order summary')}} {{__('Subtotal')}} {{__('Shipping')}} {{formated_price(0)}} {{__('Overweight Total Price')}} {{formated_price(0)}} {{__('Commission')}} {{__('Total')}} @include('front.pages.checkout.modal') @endsection @section('scripts') @include('front.pages.checkout.checkout_js') @endsection