My question is simple and may be very basic. What is the best way to convert HTML pages to Laravel.?
In HTML pages the links are like <a href="about-us.html">,
we have to convert it to <a href="{{ URL::asset('about-us.html')}}"> for Laravel.
Now i am manually editing entire HTML code to achieve it. Is there any short way to do it.?(i used replace all in CodeIgniter) Or What is the best way to avoid this overwork? Any other workflow between designer and programmer?
Note: Please comment here if you dont understand this question well. I will edit it.:)