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

{{ $resource->title }}

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

@if($resource->external_url){{ app()->getLocale() === 'ar' ? 'فتح المورد' : 'Open resource' }}@endif
@endforeach
{{ $resources->links('pagination::simple-tailwind') }}
@endsection