meta-description-and-image

et#23
Mahesh Sharma 2 years ago
parent 637e49f574
commit f053ba81b5
  1. 2
      config/app.php
  2. 8
      resources/views/about.blade.php
  3. 1
      resources/views/appointment.blade.php
  4. 18
      resources/views/blog-detail.blade.php
  5. 1
      resources/views/blogs.blade.php
  6. 2
      resources/views/welcome.blade.php

@ -69,7 +69,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => 'Australia/Sydney',
/*
|--------------------------------------------------------------------------

@ -1,12 +1,12 @@
@extends('layout.app')
@section('title')
<title>About Us</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="description" content="{{strip_tags($about->sub_description)}}">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
<meta property="og:image" content="{{url('frontend/images/about-banner.png')}}"/>
<meta property="og:title" content="About Us"/>
<meta property="og:description" content="{{strip_tags($about->sub_description)}}"/>
@endsection
@section('content')
<section class="about-header-section">

@ -178,6 +178,7 @@
$calender.on('zabuto:calendar:day', function (e) {
var date = e.date;
//get available time for selected date

@ -1,12 +1,12 @@
@extends('layout.app')
@section('title')
<title>Blogs Detail</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<title>{{$blog->title}}</title>
<meta name="description" content="{{(\Illuminate\Support\Str::limit(strip_tags($blog->description), 100, $end='...'))}}">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
<meta property="og:image" content="{{url($blog->image)}}"/>
<meta property="og:title" content="{{$blog->title}}"/>
<meta property="og:description" content="{{(\Illuminate\Support\Str::limit(strip_tags($blog->description), 100, $end='...'))}}"/>
@endsection
@section('content')
<section class="blog-detail-section">
@ -26,16 +26,16 @@
</div>
<div class="social-share">
<?php
$baseUrl="http://www.eteducation.com.au/blog/";
$baseUrl="https://eteducation.com.au/blog/";
// $slug="$setting->slug";
?>
<a target="_blank" class="socials-icon" href="http://www.facebook.com/sharer.php?u={{$baseUrl.'/blog/'}}">
<a target="_blank" class="socials-icon" href="https://www.facebook.com/sharer.php?u={{$baseUrl.$blog->slug}}">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a target="_blank" class="socials-icon" href="http://twitter.com/share?text=Visit the link &url={{$baseUrl.'/blog/'}}">
<a target="_blank" class="socials-icon" href="https://twitter.com/share?text=Visit the link &url={{$baseUrl.$blog->slug}}">
<i class="fa-brands fa-twitter"></i>
</a>
<a target="_blank" class="socials-icon" href="http://www.linkedin.com/shareArticle?mini=true&url={{$baseUrl.'/blog/'}}">
<a target="_blank" class="socials-icon" href="https://www.linkedin.com/shareArticle?mini=true&url={{$baseUrl.$blog->slug}}">
<i class="fa-brands fa-linkedin-in"></i>
</a>
</div>

@ -44,7 +44,6 @@
<div class="col-md-7">
<div class="related-articles">
@foreach($blogs->where('blog_type','!=',1) as $blog)
<div class="article-card">
<div class="article-img">
<img src="{{url($blog->thumbnail ?? $blog->image)}}" class="w-100" alt="">

@ -4,7 +4,7 @@
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:image" content="{{url($sliders->first()->image)}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection

Loading…
Cancel
Save