@extends('front.layouts.master') @section('content')

Engineering techniques & implementation

{{ $page->short_description }}

{!! $page->description !!}

@php $sub_child_pages=App\Models\Page::where('parent_id',$page->id)->where('status',1)->orderby('weight','asc')->get(); @endphp @if(isset($sub_child_pages)) @if($sub_child_pages->count() > 0)

{{ $page->name }}

{{ $page->name }}
@foreach($sub_child_pages as $sub_child_page)

{{ $sub_child_page->name }}

{{ $sub_child_page->short_description }}

Read More
@endforeach
@endif @endif
@endsection