@extends('layouts.front-layout') @section('title') Cart @endsection @section('content') Cart @if(isset($cart_data) && Cookie::get('shopping_cart')) @include('front.cart.cart-list') @else @include('front.cart.empty-cart-message') @endif @endsection