Dirk Jan
Dirk Jan

Reputation: 2469

Laravel Blade @include .html files

Include HTML files with blade

Can I include a .html file in stead of .php with Laravel 4 Blade?

My code:

@include('emails.templates.file')
  //file is email.html

file is automatically a .php file..

Upvotes: 10

Views: 27066

Answers (2)

alexrussell
alexrussell

Reputation: 14202

While @PHPWeblineindia's solution worked for you, it's not really the Laravel way.

However, you can do what you want by telling Laravel's view system to also consider .html files. By default it looks for .blade.php files, and then falls back to .php files. You can add .html to the searched extensions by adding the following somewhere in your bootstrapping code:

// tells the view finder to look for `.html` files and run
// them through the normal PHP `include` process
View::addExtension('html', 'php');

This will actually put HTML as the highest priority, so make sure you don't have two different views called the same thing with different extensions.

Upvotes: 19

user4094161
user4094161

Reputation:

If its an external file then can you please try this:

<?php include app_path() . '/views/<path_to_layout/emails>/file.html'; ?>

Let me know if its still an issue.

Upvotes: 10

Related Questions