Laravel Include Blade File with Data Example
Hi Dev,
This post will give you example of laravel include blade file with data. i would like to show you laravel blade include file with data. you can understand a concept of include file with data in laravel blade. i explained simply about how to include file with data in laravel view.
We almost need to use include blade file inside another blade file. as specially when you need same design and code use again and again then you will create conman file and call it each tile. laravel provide @include directive to include sub view inside blade file.
you can easily include blade file with data in your laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 app. let's see simple example bellow:
resources/views/products/index.blade.php
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Alert List</h1>
@include('products.alert', ['type' => 'success', 'content' => 'This is success alert'])
@include('products.alert', ['type' => 'danger', 'content' => 'This is error'])
@include('products.alert', ['type' => 'info', 'content' => 'This is info'])
</div>
</body>
</html>
resources/views/products/alert.blade.php
<div class="alert alert-{{$type}}">
{{ $content }}
</div>
now you can run and see layout as like bellow:
i hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Blade @unless Directive Example
- Laravel Blade Empty Directive Example
- Laravel Blade Isset Else Example
- Laravel Blade Foreach Loop Example
- Laravel Blade Switch Case Statement Example
- Laravel Blade If Multiple Conditions Example
- Laravel Blade If Condition Example
- Laravel nl2br Blade Directive Example
- How to Create Custom Blade Directive in Laravel?
- Laravel Blade Check If Variable is Set or Not Example