vendredi 23 mars 2018

Image not showing 3rd url page

Sorry if my title is a bit weird, I wasn't sure how to properly make a title for this. I'm using Laravel and the problem I'm having is that if I go to the 3rd url in my page my image isn't showing. It shows if I'm on the 1st url or 2nd url but not the 3rd and I can't understand why.

My public.blade.php

    <body>
    <!-- BEGIN MAIN WRAPPER CONTENT -->
    <div id="wrapper">
        <!-- BEGIN MOBILE LOGO SECTION -->
        <div class="visible-xs logo">
            <img src="{!! asset("img/logo1.png") !!}">
        </div>
        <!-- END MOBILE LOGO SECTION -->

        <!-- BEGIN MENU SECTION -->
        @include('menus::menu')
        <!-- END MENU SECTION -->

        <!-- BEGIN MAIN CONTENT SECTION -->
        <div id="page-wrapper">
            <!-- BEGIN CONTENT SECTION -->
            <div class="container-fluid">
                @yield('content')

                <div class="row">
                    <div class="col-lg-6">
                        <div class="footer visible-xs">
                            <p>
                                Designed by <br />
                                <a href="#" target="_blank">
                                    <img src="{!! asset("img/footer.png") !!}"> <!-- THIS IS THE IMAGE THAT IS GIVING ME PROBLEMS -->
                                </a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            <!-- END CONTENT SECTION -->
        </div>
        <!-- END MAIN CONTENT SECTION -->
    </div>
    <!-- END MAIN WRAPPER CONTENT -->

I hope I explained clearly. If not please let me know.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire