@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'المكتبة الإرشادية' : 'Guidance Resource Library') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')

{{ $isArabic ? 'المكتبة الإرشادية' : 'Guidance library' }}

{{ $isArabic ? 'نشر المقالات والروابط والمواد التوعوية' : 'Publish articles, links, and guidance materials' }}

@csrf
@if($resources->count() > 0) @foreach($resources as $resource)

{{ $resource->title }}

{{ $resource->type }}

{{ $resource->summary ?: \Illuminate\Support\Str::limit(strip_tags($resource->body), 110) }}

{{ $resource->audience }}{{ $resource->published_at ? ' • ' . $resource->published_at->format('Y-m-d') : '' }}

@endforeach @endif
{{ $resources->links('pagination::simple-tailwind') }}
@endsection