@extends('admin.layout.app') @section('content')

About Us

@if ($abouts->isEmpty()) Add New @endif
@forelse ($abouts as $key => $about) @empty @endforelse
# Heading Short Content Image Action
{{ $key + 1 }} {{ $about->heading }} {{ \Illuminate\Support\Str::limit(strip_tags($about->content1 ?? ''), 80, '...') }} @if($about->image) {{ $about->imagealt ?? 'About Image' }} @else No image @endif
No about entries found.
@if(method_exists($abouts, 'links'))
{{ $abouts->links('pagination::bootstrap-4') }}
@endif
@endsection