@extends('includes.master')
@section('content')
@if(Session::has('message'))
×
{{ Session::get('message') }}
@endif
@forelse($carts as $cart)
{{\App\Product::findOrFail($cart->product)->title}}
{{\App\Product::findOrFail($cart->product)->price}}
@empty
|
|
|
|
@endforelse
@stop
@section('footer')
@stop