@extends('index') @push('styles') About - Protik Goswami @section('about-section')

About

@php $aboutContents = \App\Models\AboutContent::getAllOrdered(); @endphp @foreach($aboutContents as $content)
@if($content->image) @if(Str::startsWith($content->image, 'http')) {{ $content->title }} @else {{ $content->title }} @endif @endif
@if($content->title)

{!! $content->title !!}

@endif
{!! nl2br(e($content->content)) !!}
@endforeach
@endsection