Viewing: maps.blade.php
@extends('layouts.frontend-layout') @section('meta_decription') {!! $map_tag->map_meta ?? '' !!} @stop @section('content') <section class="section-bg"> <div class="overflow-hidden position-relative w-100 mt-5 mt-lg-0 mob_top_banner"> <div class="position-relative w-100"> <img src="{{ asset('public/frontend-images/page-banners/maps.jpg') }}" class="img-fluid" alt="map_banner"> </div> <div class="pagetitlebar-bg position-absolute top-0 bottom-0"></div> <div class="col-12 d-flex justify-content-center position-absolute top-50"> <h2 class="bs-main-heading ">Maps</h2> </div> </div> </section> <section class="section-bg section-padding" style="padding-bottom: 0"> <div class="container"> <div class="row justify-content-center pb-4"> <div class="col-12 d-flex justify-content-center"> <div class="section-heading"> <h4 class="bs-title">BlackStone Maps</h4> <div class="horizontal-divider"></div> </div> </div> </div> <!--<div class="row">--> <!-- <div class="col-12">--> <!-- <p class="bs-description">--> <!-- BlackStone unique offering focuses on future investment outlook linked to optimization of the asset--> <!-- value of real estate. By integrating our investment knowledge and real estate management experience,--> <!-- BlackStone is able to build a portfolio of landmark properties with excellent investment potential--> <!-- in Pakistan and beyond, whether be it commercial</p>--> <!-- </div>--> <!--</div>--> </div> </section> <section class="section-bg section-padding"> <div class="container"> <div class="row"> @foreach ($maps as $map) <div class="col-12 col-md-6 col-lg-4 pt-4"> <a href="javascript:void(0)" class="map-image" data-source="{{asset('storage/app/public/'.$map->image_url)}}"> <div class="bg-light rounded p-3"> <button class="bg-transparent border-0" type="button"> <img src="{{ asset('public/frontend-images/services/map-page-button-icon.png') }}" alt="map"> <span class="text-center">{{$map->name}}</span> </button> </div> </a> </div> @endforeach </div> </div> </section> @endsection
Return