| Server IP : 14.225.216.240 / Your IP : 216.73.217.114 Web Server : nginx/1.20.1 System : Linux localhost.localdomain 5.14.0-596.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jun 27 16:02:33 UTC 2025 x86_64 User : taidh ( 1001) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/pts/app/Module/Admin/View/ |
Upload File : |
@if (Common::hasRoute([
'channel',
'loyalty',
'membership'
]))
@php
if (!Lang::has('customer::message.mod')) {
Common::initLanguageNS('customer');
}
@endphp
@if (Common::hasRoute('channel.index'))
<li class="nav-item">
<a href="{{route('channel.index')}}" class="nav-link {{Common::route(['channel.index'])}}">
<i class="nav-icon fas fa-info-circle"></i>
<p>{{trans('customer::channel.nav')}}</p>
</a>
</li>
@endif
@if (Common::hasRoute('loyalty.index'))
<li class="nav-item">
<a href="{{route('loyalty.index')}}" class="nav-link {{Common::route(['loyalty.index'])}}">
<i class="fas fa-bullseye nav-icon"></i>
<p>{{trans('customer::loyalty.nav')}}</p>
</a>
</li>
@endif
@if (Common::hasRoute('membership.index'))
<li class="nav-item">
<a href="{{route('membership.index')}}" class="nav-link {{Common::route(['membership.index'])}}">
<i class="fas fa-credit-card nav-icon"></i>
<p>{{trans('customer::membership.nav')}}</p>
</a>
</li>
@endif
@endif