Gallery
Explore our stunning collection of marble and granite projects
@php
$categories = \App\Models\CateBar::where('status', 1)->get();
@endphp
@foreach($categories as $category)
@endforeach
@php
$allPics = \App\Models\FinishBarPic::with('finishBar.matBar.cateBar')->paginate(24);
@endphp
@forelse($allPics as $pic)
@php
$categoryId = $pic->finishBar?->matBar?->cateBar->id ?? 0;
@endphp
@empty
@endforelse
@if($allPics->hasPages())
Gallery images coming soon!
@if($allPics->onFirstPage())
«
@else
«
@endif
@foreach($allPics->getUrlRange(1, $allPics->lastPage()) as $page => $url)
@if($page == $allPics->currentPage())
{{ $page }}
@else
{{ $page }}
@endif
@endforeach
@if($allPics->hasMorePages())
»
@else
»
@endif
@endif