@extends('admin.layout.app') @section('content')
About Us
@csrf
{{--
--}}
{{--
--}} {{-- ---------------- Specialization ---------------- --}}
@php $details = $aboutus ? json_decode($aboutus->description, true) : []; @endphp @php $details2 = $aboutus ? json_decode($aboutus->specializations, true) : []; @endphp @if (!empty($details2)) @foreach ($details2 as $key => $val)
@if ($key != 0) @endif
@endforeach @else
@endif
{{-- ---------------- Feature ---------------- --}}
@if (!empty($details)) @foreach ($details as $key => $val)
@if ($key != 0) @endif
@endforeach @else
@endif
@endsection