@extends('layouts.master_frontend') @section('content') @php $countFeatures = ($data_row->about_section_features!=null) ? 1 : 0; $featuresDecodeJson = json_decode($data_row->about_section_features); @endphp

{{$data_row->about_section_heading}}

{{$data_row->about_section_tagline}}

{!!$data_row->about_section_desc!!}


@if($countFeatures) @foreach($featuresDecodeJson as $val)

{{$val->title}}

{!!$val->short_desc!!}

@endforeach @endif
@endsection