தமிழ் மருத்துவ அகராதி

    @php $dictionary = App\Models\MedicalDictionary::where('status', '1')->limit(25)->get(); @endphp @foreach($dictionary as $item )
  • {{ ucwords($item->english_word) }} - {{ $item->tamil_word }}
  • @endforeach View More

Blog Posts

@php $blog_posts = App\Models\MyPosts::where('status', '1')->limit(3)->get(); @endphp @foreach($blog_posts as $item) @php $title = str_replace(' ', '-', strtolower($item->english_title)); $sub_category = App\Models\SubCategory::where('id', $item->post_sub_category)->first(); @endphp
{{ $item->post_image_alt }}

{{ ucwords($item->tamil_title) }}

@endforeach