问题
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..
回答1:
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.
回答2:
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.
来源:https://stackoverflow.com/questions/26377352/laravel-blade-include-html-files