implement template html in laravel project

0

I have created a php project with laravel 5.4, I have configured everything correctly and everything works perfectly, I have bought a complete template to implement it to my project, made in bootstrap, and I know that it can be used with laravel, my problem is the following, the template by default brings all the files in html, but of course laravel works with ".blade.php" and I have managed to transform all the files to .blade.php, but since it is a professional template, in the different html there are references to the other htmls, and then being in .blade.php does not detect those html files, my question would be, if with laravel there is any possibility to include such template in html, or in blade but changing references to other files? that is not going one by one. Greetings.

    
asked by Peisou 04.12.2017 в 13:00
source

1 answer

0

To include .blade.php files on blade:

@include('directorio.archivo')

This if you want to include the file: resources/views/directorio/archivo.blade.php

In the href you have to put the routes they address.

    
answered by 04.12.2017 в 13:09