'Logo on Navbar Won't Show in Laravel Jetstream

So I learn Laravel Jetstream using Inertia Stack. While I was doing some changing on Logo in the Navbar on Dashboard view it's still showing.

But when I go to profile view, it's just gone, I don't know why, but if I try using blade function which is asset function, it'll be gone in dashboard view too.

This is my code on ApplicationMark.vue:

<template>
    <img class="block h-9 w-auto" src="favicon.png" alt="Logo">
    <!-- <img class="block h-9 w-auto" src="{{ asset('favicon.png') }}" alt="Logo"> -->
</template>


Solution 1:[1]

You will want to avoid using KEEPFILTERS on any filters you want to allow to look outside of the filter context:

Users_1 = 
CALCULATE(
    COUNTROWS( 'users' ), 
    'users'[date (days)] <= MAX( 'Calendar'[Date] ),
    'users'[date (days)] >= MIN( 'Calendar'[Date] ),
    'users'[is_SQL] = 0
)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 GregGalloway