I have set layout folder in module configuration file as
$view->setLayoutsDir('../../common/layouts/');
and then layout set as
$view->setLayout('main');
It works fine but I want to do inheritence for that I created base.volt file inside common/layouts folder and modify main.volt as
{% extends "base.volt" %}
but it gives me error as
Template file /var/www/html/projectName/apps/modules/home/views/base.volt does not exist
NOTE:- in above error home is module name and common layout is differenet folder