Hi @AkashWeybee,
As I have seen the screenshot, you are trying to access the object.
There is a 'index()' method in file name i.e. 'packages/Webkul/Shop/src/Http/Controllers/ProductsCategoriesProxyController.php'.
There is a variable '$product' present in the 'if' case, if you want to add custom field than asign property like this,
$product->extra_field_1 = 'Test 1';
$product->extra_field_2 = 'Test 2';
And then in the main view access the object like this.
{{ $product->extra_field_1 }}
{{ $product->extra_field_2 }}