@extends('layouts.userdashboard') @section('content')

Favorite Products

@if(count($final_out) > 0) @foreach($final_out as $favorite) @endforeach @endif
Item Image Item Name Item Price Details Cart Action
{{ $favorite['item']['name'] }} Rs.{{ $favorite['item']['price'] }} View Details @if(auth()->check()) @if(!\Cart::session(auth()->user()->id)->get($favorite['item']['id'])) @else @endif @else @endif
@endsection