@extends('layouts.main-app') @section('title', 'Wishlist') @section('content') @include('layouts.navbar')
@foreach ($wishlist as $wishlists) @endforeach
Product Price Stock Status
{{ $wishlists->name }}
{{ $wishlists->product->name}} ₱ {{ $wishlists->product->price}} {{ $wishlists->product->availability}}
@csrf @method('DELETE')
Products in your wishlist may go out of stock or change in price. Add them to your cart to secure your purchase.
@foreach ($banners as $banner) @if ($banner->banner_type === 'Side Banner')
{!! $banner->title !!}
{!! $banner->subtitle !!}
@endif @endforeach
@include('layouts.footer') @endsection