Blog Posts

@php $blog_posts = App\Models\MyPosts::where('status', '1')->limit(5)->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 View More

மூலிகைகள்

    @php $sidebar_herbals = App\Models\NaturalTopic::where('status', '1')->where('topic_category', 'herbals')->limit(10)->inRandomOrder()->get(); @endphp @foreach($sidebar_herbals as $item ) @php $title = str_replace(' ', '-', strtolower($item->english_title)); @endphp
  •  {{ $item->topic_name_tamil }}
  • @endforeach View More

மாத்திரைகள்

    @php $sidebar_tablets = App\Models\Allopathic::where('status', '1')->where('medicine_type', 'tablet')->limit(10)->inRandomOrder()->get(); @endphp @foreach($sidebar_tablets as $item ) @php $title = str_replace(' ', '-', strtolower($item->english_title)); @endphp
  •  {{ $item->medicine_name_tamil }}
  • @endforeach View More

சிரப்கள்

    @php $sidebar_syrups = App\Models\Allopathic::where('status', '1')->where('medicine_type', 'syrup')->limit(10)->inRandomOrder()->get(); @endphp @foreach($sidebar_syrups as $item ) @php $title = str_replace(' ', '-', strtolower($item->english_title)); @endphp
  •  {{ $item->medicine_name_tamil }}
  • @endforeach View More

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

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