-
{{ $website_lang->where('lang_key','email_address')->first()->custom_lang }}
{!! nl2br(e($contactInformation->emails)) !!}
-
{{ $website_lang->where('lang_key','phone')->first()->custom_lang }}
{!! nl2br(e($contactInformation->phones)) !!}
-
{{ $website_lang->where('lang_key','address')->first()->custom_lang }}
{!! nl2br(e($contactInformation->address)) !!}
{{ $website_lang->where('lang_key','about_us')->first()->custom_lang }}
{{ $contactInformation->about }}
@if ($isRtl=='RTL') {{ $website_lang->where('lang_key','learn_more')->first()->custom_lang }} ← @else {{ $website_lang->where('lang_key','learn_more')->first()->custom_lang }} → @endif{{ $website_lang->where('lang_key','important_link')->first()->custom_lang }}
-
@if ($navbar->show_homepage==1)
- {{ $navigation->home }} @endif @if ($navbar->show_aboutus==1)
- {{ $navigation->about_us }} @endif @if ($navbar->show_department)
- {{ $navigation->department }} @endif @if ($navbar->show_doctor)
- {{ $navigation->doctor }} @endif
- {{ $navigation->terms_and_condition }}
- {{ $navigation->privacy_policy }} @if ($navbar->show_blog==1)
- {{ $navigation->blog }} @endif @if ($navbar->show_contactus==1)
- {{ $navigation->contact_us }} @endif
@php
$latestBlogs=App\Blog::orderBy('id','desc')->take(3)->get();
@endphp
@endforeach
{{ $website_lang->where('lang_key','recent_posts')->first()->custom_lang }}
@foreach ($latestBlogs as $item)
{{ $item->title }}
{{ $item->created_at->format('m-d-Y') }}