@extends('layouts.app') @section('page-title', 'HomePage') @section('content')
Request a Quotation
{{-- Hero Section --}}

{{ $home->hero_title }}

{{-- Built Section --}} @if(!empty($home->built_title) || !empty($home->built_description) || !empty($home->built_stats))

{{ $home->built_title ?? 'Built for quality, Built to last' }}

{{ $home->built_description ?? 'Meking Steel is the trusted partner for businesses and industries seeking reliable pre-engineered and structural steel solutions. With over 100+ projects delivered and 1.8+ million sq. meters built, we combine precision, speed, and safety to deliver unmatched quality backed by a customer-first approach.' }}

@if(!empty($home->built_button_link) && !empty($home->built_button_text)) @else @endif
@php $builtStats = is_string($home->built_stats) ? json_decode($home->built_stats, true) : $home->built_stats; @endphp @if(!empty($builtStats) && is_array($builtStats))
@foreach($builtStats as $index => $stat)
icon

{{ $stat['title'] ?? 'N/A' }}

@endforeach
@endif
@endif {{-- CEO Section --}}
{{-- CEO Content --}}
@if(!empty($home->ceo_title))

{{ $home->ceo_title }}

@endif @if(!empty($home->ceo_message))

{{ $home->ceo_message }}

@endif @if(!empty($home->ceo_name))
{{ $home->ceo_name }}

{{ $home->ceo_designation ?? '' }}

@endif
{{-- CEO Image --}}
@if(!empty($home->ceo_image)) {{ $home->ceo_name ?? 'CEO Image' }} @else Default CEO @endif
{{-- Our Mission Section --}}
@foreach($mission as $m) @php $missionItems = json_decode($m->mission_vision_items, true); @endphp @if(!empty($missionItems)) @foreach($missionItems as $item)

{{ $item['title'] ?? '' }}

{{ $item['description'] ?? '' }}

@if(!empty($item['image']))
{{ $item['title'] ?? 'Mission Image' }}
@endif @endforeach @endif @endforeach

Why Choose Us

Delivering reliable, custom-engineered steel buildings with unmatched quality, timely execution, and expert support—every step of the way.

@if(!empty($chooseItems) && count($chooseItems) > 0) @foreach($chooseItems as $item)
{{ $item->title ?? 'Quality You Can Trust' }}

{{ $item->desc ?? 'We deliver top-notch service with precision and dedication.' }}

@endforeach @else

No features available at the moment.

@endif
Factory Image

Latest Projects

Meking Steel delivers a landmark dome structure using advanced space frame and sustainable engineering solutions.

View All
@foreach($projects as $proj)
{{-- Location Badge (optional, if you have a location field) --}} @if(!empty($proj->location))
{{ $proj->location }}
@endif {{-- Project Image --}} {{ $proj->title }} {{-- Card Content --}}
{{ $proj->title }}

{{ $proj->short_description }}

DISCOVER MORE
@endforeach

Our Clients

MEKING INDIA is ISO 9001 and OHSAS 18001 Certified

Steel G+3 building for a mall over existing RCC building was challenging. Meking India team wears yet another feather on the cap. We plan to move vertical and give clients robust and economical solutions.

Download Certificate

Our Latest Blogs

@foreach($blogs as $blog)
{{ $blog->title }}
By Admin : {{ $blog->author->name ?? 'Admin' }}    |    Date : {{ \Carbon\Carbon::parse($blog->published_date)->format('d F, Y') }}
{{ $blog->title }}

{{ Str::limit($blog->short_description, 100) }}

Read More
@endforeach
@endsection