@extends('backend.layouts.main') @section('title') About Us @endsection @section('styles') @endsection @section('content')

About Us Information

{{-- --}}
@if ($aboutUs->isEmpty())
No About Us information has been added yet. Please click the "Add About Us" button to create one.
@else
@foreach ($aboutUs as $index => $item) @endforeach
S.N. Image Tagline Years of Experience Display Order Status Actions
{{ $loop->iteration }} @if ($item->image) Image @else @endif {{ Str::limit($item->tagline, 50) }} {{ $item->years_of_experience ?? 'N/A' }} {{ $item->display_order }} @if($item->is_published) Published @else Draft @endif
{{-- --}}
@endif
@endsection @section('scripts') @endsection