Skip to content

Commit

Permalink
fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
3x1io committed Apr 2, 2024
1 parent 6fe72a1 commit d763e54
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</x-splade-link>
</div>
<div class="w-full flex justify-end text-main-600">
@php $headerMenuSlots = \Modules\CircleXo\App\Facades\CircleXo::slots('header-menu'); @endphp
@php $headerMenuSlots = \Modules\CircleXO\App\Facades\CircleXo::slots('header-menu'); @endphp
@foreach($headerMenuSlots as $slot)
@if(view()->exists($slot))
@include($slot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class="w-full lg:w-1/2 xl:w-1/3"
:link="$link"
/>

@php $profileFilterSlider = \Modules\CircleXo\App\Facades\CircleXo::slots('profile-filter-slider'); @endphp
@php $profileFilterSlider = \Modules\CircleXO\App\Facades\CircleXo::slots('profile-filter-slider'); @endphp
@foreach($profileFilterSlider as $slot)
@if(view()->exists($slot))
@include($slot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class="flex items-center p-2 text-xl rounded-lg hover:bg-zinc-700 group transiti
@endif
@endforeach

@php $siteMenuSlots = \Modules\CircleXo\App\Facades\CircleXo::slots('side-menu'); @endphp
@php $siteMenuSlots = \Modules\CircleXO\App\Facades\CircleXo::slots('side-menu'); @endphp
@foreach($siteMenuSlots as $slot)
@if(view()->exists($slot))
@include($slot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class="bg-danger-600 text-white rounded-md shadow-md font-bold text-sm px-4 py-2
<x-tomato-admin-dropdown-item modal type="link" icon="bx bxl-twitter" :label="__('Link Social Account')"
href="{{ route('profile.social-accounts.show') }}"/>

@php $profileDropdown = \Modules\CircleXo\App\Facades\CircleXo::slots('profile-dropdown'); @endphp
@php $profileDropdown = \Modules\CircleXO\App\Facades\CircleXo::slots('profile-dropdown'); @endphp
@foreach($profileDropdown as $slot)
@if(view()->exists($slot))
@include($slot)
Expand Down Expand Up @@ -73,7 +73,7 @@ class="bg-danger-600 text-white rounded-md shadow-md font-bold text-sm px-4 py-2
</x-tomato-admin-tooltip>
</x-circle-xo-share>

@php $profileButtons = \Modules\CircleXo\App\Facades\CircleXo::slots('profile-buttons'); @endphp
@php $profileButtons = \Modules\CircleXO\App\Facades\CircleXo::slots('profile-buttons'); @endphp
@foreach($profileButtons as $slot)
@if(view()->exists($slot))
@include($slot)
Expand Down

0 comments on commit d763e54

Please sign in to comment.