Tahir Abbas
Tahir Abbas

Reputation: 11

Why img is not loading even path is correct? Laravel 9 latest version

I am trying to show img in nav bar of my project, in laravel 9 latest version. Syntax is correct, path is correct, even when i try to show img on anywhere on page just like normal img it was not loading anywhere even code in correct need help guys.

enter image description here

<nav class="navbar navbar-expand-lg navbar-light bg-light">
    <div class="container-fluid">
        <a class="navbar-brand" href="index.php">
            TMHS
            <img src="resources/images/logo/tmhslogo.png" width="30" height="30" class="d-inline-block align-top" alt="">
            TMHS logo</a>

Upvotes: 0

Views: 30

Answers (1)

Elliot
Elliot

Reputation: 73

Try moving the image to your public directory, the resources directory isn't publically accessable by default.

Upvotes: 1

Related Questions