- change root route '/' to HomeController - add main layout - add navbar and hero blade component - add custom tailwind classes - separate css files for button component
5 lines
110 B
PHP
5 lines
110 B
PHP
@props(['link' => '', 'name' => ''])
|
|
<li>
|
|
<a class="hover:underline" href="{{$link}}">{{$name}}</a>
|
|
</li>
|