@extends('admin.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('admin.partials.rtl-style') @section('content') {{-- About sub Information section start --}}
{{ __('About Contents') }}
{{ __('Add') }}
@if ($aboutContents->isEmpty())

{{ __('NO RECORD FOUND') . '!' }}

@else
@foreach ($aboutContents as $aboutContent) @endforeach
{{ __('Title') }} {{ __('Text') }} {{ __('Actions') }}
{{ @$aboutContent->sub_title }} {{ @$aboutContent->sub_text }} {{ __('Edit') }}
@csrf
@endif
{{-- create modal --}} @include('admin.about-us.about-content.create') {{-- edit modal --}} @include('admin.about-us.about-content.edit') @endsection