FleetCart/Modules/Wishlist/Http/Controllers/WishlistProductController.php

21 lines
389 B
PHP
Raw Permalink Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Wishlist\Http\Controllers;
class WishlistProductController
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return auth()->user()
->wishlist()
->with('files')
->latest()
->paginate(20);
}
}