@extends('admin.master') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

About Sections

Manage about section content and status

Add Section
@forelse($sections as $key => $section) @empty @endforelse
# Hero Image Hero Title Mission Title Values Title Story Title Status Action
{{ $sections->firstItem() + $key }} @if($section->hero_image) hero image @else No Image @endif {{ $section->hero_title }} {{ $section->mission_title }} {{ $section->values_title }} {{ $section->story_title }} @if($section->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No section found
{{ $sections->links() }}

About Stats

Manage stat number, label, order and status

Add Stat
@forelse($stats as $key => $item) @empty @endforelse
# Section Stat Number Stat Label Order Status Action
{{ $stats->firstItem() + $key }} {{ $item->section->hero_title ?? 'N/A' }} {{ $item->stat_number }} {{ $item->stat_label }} {{ $item->display_order }} @if($item->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No stat found
{{ $stats->links() }}

About Values

Manage value text, order and status

Add Value
@forelse($values as $key => $item) @empty @endforelse
# Section Value Text Order Status Action
{{ $values->firstItem() + $key }} {{ $item->section->hero_title ?? 'N/A' }} {{ $item->value_text }} {{ $item->display_order }} @if($item->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No value found
{{ $values->links() }}
@endsection