2023-06-11 12:14:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Modules\Cart\Http\Controllers;
|
|
|
|
|
2023-12-03 14:07:47 +00:00
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
use Illuminate\Contracts\Foundation\Application;
|
|
|
|
|
2023-06-11 12:14:03 +00:00
|
|
|
class CartController
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
2023-12-03 14:07:47 +00:00
|
|
|
* @return Application|Factory|View
|
2023-06-11 12:14:03 +00:00
|
|
|
*/
|
2023-12-03 14:07:47 +00:00
|
|
|
public function index(): Application|Factory|View
|
2023-06-11 12:14:03 +00:00
|
|
|
{
|
|
|
|
return view('public.cart.index');
|
|
|
|
}
|
|
|
|
}
|