This commit is contained in:
tanch0
2024-06-20 18:07:40 +05:45
parent adfc826e9c
commit 5b3c44aa33
10 changed files with 135 additions and 90 deletions

View File

@ -40,10 +40,18 @@
</a>
</div>
</li>
<li>
<i class='bx bx-user'></i>
<a href="{{route('userLogin')}}">लगइन</a>
</li>
@if (!auth()->check())
<li>
<i class='bx bx-user'></i>
<a href="{{ route('userLogin') }}">लगइन</a>
</li>
@else
<li>
<i class='bx bx-user'></i>
<a href="#"><span class="fs-10">{{ auth()->user()->name }}</span> </a>
<i class='bx bx-power-off'></i>
</li>
@endif
</ul>
</div>
</div>
@ -56,7 +64,7 @@
<div class="main-responsive-nav">
<div class="container">
<div class="logo">
<a href="{{route('home')}}">
<a href="{{ route('home') }}">
<img src="<?php echo asset(SITEVARS->primary_logo); ?>" class="black-logo" alt="image">
<img src="<?php echo asset(SITEVARS->secondary_logo); ?>" class="white-logo" alt="image">
</a>
@ -66,7 +74,7 @@
@if ($ads->isNotEmpty())
@foreach ($ads as $ad)
@if ($ad->ad_categories_id == 1)
<img src="{{ asset($ad->thumb) }}" alt="image">
<img src="{{ asset($ad->thumb) }}" alt="image">
@endif
@endforeach
@endif
@ -77,7 +85,7 @@
<div class="row align-items-center">
<div class="col-lg-6">
<nav class="navbar navbar-expand-sm navbar-light">
<a class="navbar-brand" href="{{route('home')}}">
<a class="navbar-brand" href="{{ route('home') }}">
<img src="<?php echo asset(SITEVARS->primary_logo); ?>" class="black-logo" alt="image"
style="margin-left: -20px;max-width: 350px; height: auto; display: block;">
<img src="<?php echo asset(SITEVARS->secondary_logo); ?>" class="white-logo" alt="image" style="margin-left: -20px;">