I made contact page with Laravel.
On the other hand, They made static page with HTML/CSS
I think we have 2 solutions.
One way, Absorb static page in Laravel like this.
(Now)
static/
index.html
index.css
images/
aa.jpg
public/
css/
contact.css
images/
contact/
bb.jpg
resources/
views/
contact/
index.blade.php
(Absorb to Laravel)
public/
css/
index.css
contact.css
images/
aa.jpg
contact/
bb.jpg
resources/
views/
index.blade.php
contact/
index.blade.php
It seems simple and easy. But this way must merge all files by me, It is so bother to do.
And other way, That made contact page WITHOUT laravel, just use PHP.
static/
index.html
index.css
contact/
index.php
contact.css
images/
bb.jpg
images/
aa.jpg
It seems easy to understand Directory structure. But I dont made that. So it take long time to made again.
So, I wish to do other solutions like this.
static/
index.html
index.css
contact/ --> symbolic link
images/
aa.jpg
contact/
public/
css/
contact.css
images/
contact/
bb.jpg
resources/
views/
contact/
index.blade.php
Can I do this?