@extends('layouts.app') @section('title', 'Surahs') @section('content')

Surahs (Chapters)

All Surahs {{ $surahs->total() }}
@forelse($surahs as $surah) @empty @endforelse
# Arabic Name English Name Translation Revelation Ayats Actions
{{ $surah->surah_no }}
{{ $surah->surah_name_arabic }}
@if($surah->surah_name_arabic_long) {{ $surah->surah_name_arabic_long }} @endif
{{ $surah->surah_name }} {{ $surah->surah_name_translation }} {{ $surah->revelation_place }} {{ $surah->total_ayah }} View
No surahs found
Showing {{ $surahs->firstItem() ?? 0 }} to {{ $surahs->lastItem() ?? 0 }} of {{ $surahs->total() }} entries
{{ $surahs->links() }}
@push('styles') @endpush
@endsection