App\Http\Controllers\ProductApiController::index PHP Method

index() public method

public index ( ) : Illuminate\Http\Response
return Illuminate\Http\Response
    public function index()
    {
        $products = Product::scope()->withTrashed()->orderBy('created_at', 'desc');
        return $this->listResponse($products);
    }