How to Use Include Function in Laravel?

Hello friends, today we will talk about how you will add a file from one file to another in the laravel framework. So friends, I would like to tell you that you can easily add a file from another file with the help of include function. The function is an inbuilt function of the laravel framework. Which we use in laravel with @include. You are explained in the example below.

You can easily use in Laravel 7, Laravel 6, Laravel 5.8, Laravel 5.7, Laravel 5.6, Laravel 5.5 etc….

The syntex in which an include in laravel is written like this.

@include('filename')

Example:-

filename.blade.php

<html>
<head>
<title>Hello Experts Tool</title>
</head>
<body>
<h2>laravel include file use function</h2>
@include('mytool')
</body>
</html>

mytool.blade.php

<p>Hello Experts Tool</p>