[Vuejs]-Why is bootstrap not working in my laravel's home page?

1👍

As no one seemed to find an answer for me…

I tried what others said and my conclusion is that it wasn’t a problem with bootstrap nor vue. I guess it was the fact that the classes content and title m-b-md didn’t provide the desire responsiveness I expected from the text

 <div class="content">
    <div class="title m-b-md">
        gastiGram <!-- ¡¡¡HERE IS WHERE THE PROBLEM WAS!!! -->
    </div>
    <div class="navbar-brand">
        <div>

        </div>
    </div>

    <div class="links">
        <a href="https://laravel.com/docs">Docs</a>
        <a href="https://laracasts.com">Laracasts</a>
        <a href="https://laravel-news.com">News</a>
        <a href="https://blog.laravel.com">Blog</a>
        <a href="https://nova.laravel.com">Nova</a>
        <a href="https://forge.laravel.com">Forge</a>
        <a href="https://vapor.laravel.com">Vapor</a>
        <a href="https://github.com/laravel/laravel">GitHub</a>
    </div>
</div>

I’m willing to accept an answer that demonstrates that what I’m saying is wrong and I can apply other solution to my problem in this project.
Kamlesh Paul suggestions were useful to me… now I have a little bit of a better understanding on how laravel works; still it was insufficient since the font was collapsing sideways applying what he said would work, but didn’t, so I just applied the style manually

<h1 style="font-size:20vw;">gastiGram</h1>
👤newbie

2👍

 <link href="{{asset('css/app.css')}}" rel="stylesheet">

I solved the problem placing this code in head section of welcome.blade.php page.

Leave a comment