Template directive: include

The @include() directive is used to include a php file into the current template file. It is an equivalent of the PHP's internal include() function. Any file included should only follow the document root. For example, if a file file.php exists within the project root, then including that file will be as follows:
include()
  @include('file.php')
                  
The sample above will include file.php from the document root.