PATH:
home
/
lab2454c
/
vaultchip.com
/
resources
/
views
/
custom
@php $pages = Botble\Page\Models\Page::whereIn('name', ['ANTI THEFT', 'DEVICE LOCK', 'GEO LOCK', 'WALLET BACKUPS'])->get(); $title = Botble\Base\Models\HomeTitle::where(['id' => 1])->select('title4')->first(); $url = explode('/', url()->current()); $endUrl = end($url); @endphp <div class="body__containt__main" style="padding: 0 !important"> <div class="digital__money @if($endUrl == 'products') inner products @endif"> <div class="container"> <div class="heading__wrapp"> <h2>{{ isset($title->title4) ? $title->title4 : 'Secure your digital money' }}</h2> </div> <div class="items__card__wrapp"> <div class="row"> @isset($pages) @foreach($pages as $page) <div class="col-xl-3 col-lg-3 col-md-6 mr__top"> <div class="item__card"> <h4>{{ $page->name }}</h4> <p>{{ $page->description }}</p> <a href="{{ $page->url }}">Learn More</a> </div> </div> @endforeach @endisset </div> </div> </div> </div>
[+]
..
[-] solutionSubpart.blade.php
[edit]
[-] aboutSubpart.blade.php
[edit]