@extends('user.layouts.master') @section('title') carts @endsection @section('css') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($data) @foreach($data as $row) @endforeach @endif
product name product price product quantity exp date view product
{{$row->product->name()}} {{$row->product->price}} {{$row->product->quantity}} {{$row->exp_date}} product
@endsection @section('js') @endsection