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