jeudi 28 juillet 2016

Laravel Syntax error, unexpected 'variable' (T_STRING)

I am trying to access a Shopping Cart view of a user, but when i click to get the Cart View it throws the below error.

Error : syntax error, unexpected 'item' (T_STRING)

Button:

<a href=""><i class="fa fa-shopping-cart" aria-hidden="true"></i> Shopping Cart
<span class="badge"></span>
</a>

Route:

Route::get('/shopping-cart','ProductController@getCart');

View:

@if(Session::has('cart))
        <div class="row">
            <div class="col-sm-6 col-md-6 col-md-offset-3 col-sm-offset-3">
                <ul class="list-group">
                    @foreach($products as $product)
                        <li class="list-group-item">
                            <span class="badge"></span>
                            <strong></strong>
                            <span class="label label success"></span>
                            <div class="btn-group">
                                <button class="btn btn-primary btn-xs dropdown-toggle" data-toggle="dropdown">
                                    Action <span class="carret"></span>
                                </button>
                                <ul class="dropdown-menu">
                                    <li><a href="$">Reduce By 1</a></li>
                                    <li><a href="$">Reduce By All</a></li>
                                </ul>
                            </div>
                        </li>
                    @endforeach
                </ul>
            </div>
        </div>

@endif

Cart Controller:

public function getCart(){
        if(!Session::has('cart')){
            return view('shop.shopping-cart');
        }
        $oldCart = Session::get('cart');
        $cart = new Cart($oldCart);
        return view('shop.shopping-cart', ['products' => $cart->items, 'totalPrice' => $cart->totalPrice]);
}



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2aBxnrE
via IFTTT

Aucun commentaire:

Enregistrer un commentaire