19 lines
329 B
PHP
19 lines
329 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Cart\Http\Controllers;
|
||
|
|
||
|
use Modules\Cart\Facades\Cart;
|
||
|
|
||
|
class CartCrossSellProductsController
|
||
|
{
|
||
|
/**
|
||
|
* Display a listing of the resource.
|
||
|
*
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
return Cart::crossSellProducts();
|
||
|
}
|
||
|
}
|