@include - Including Other Templates
Syntax
@include('filename')Example
<header>
<h1>Welcome to My Website</h1>
</header><!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
@include('header')
<p>This is the main content of the page.</p>
</body>
</html>Output
Notes
Last updated