Link to the repository
[Only for premium members]
[Only for premium members]
In this lesson, we will explore how to change the look of the page's main elements: the logo, colors, layout, and navigation.
Your application's default name at the top left, beside the logo, is "Laravel Starter Kit". You can change it in the logo component file.
resources/js/components/AppLogo.vue
BEFORE:
<span class="mb-0.5 truncate font-semibold leading-none">Laravel Starter Kit</span>
AFTER:
<span class="mb-0.5 truncate font-semibold leading-none">Vue Tasks</span>
With the same example, let's change the color with Tailwind, adding...