@extends('admin.master') @section('content')

About Home Management

Manage the homepage About Wasel Exchange section.

Add About Section
@if (session('success'))
{{ session('success') }}
@endif

About Sections

Total: {{ $aboutSections->total() }}
@if ($aboutSections->count())
@foreach ($aboutSections as $aboutSection) @endforeach
Image Section Content Experience Button Status Updated Actions
{{ $aboutSection->image_alt
                                            ?: $aboutSection->title }} {{ $aboutSection->title }} {{ $aboutSection->label ?: 'No label' }} {{ $aboutSection->experience_number }} {{ $aboutSection->experience_suffix }} {{ $aboutSection->experience_text }} @if ($aboutSection->button_text) {{ $aboutSection->button_text }} {{ $aboutSection->button_url ?: 'No URL' }} @else No button @endif @if ($aboutSection->is_active) Active @else Inactive @endif {{ $aboutSection->updated_at->format( 'd M Y' ) }} {{ $aboutSection->updated_at->format( 'h:i A' ) }}
Edit
@csrf @method('DELETE')
@if ($aboutSections->hasPages())
{{ $aboutSections->links() }}
@endif @else

No About Section Found

Add your first homepage About section.

Create About Section
@endif
@endsection