<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="csrf-token" content="<?php echo e(csrf_token()); ?>" />
<?php echo e(config(['app.name' => get_settings('system_title')])); ?>
<?php
//print SEO field values from database 'seo_field table', based on current route
$current_route = Route::currentRouteName();
$seo_field = App\Models\SeoField::where('name_route', $current_route);
if($current_route == 'course.details' && isset($course_details)){
$seo_field->where('course_id', $course_details->id ?? '');
}
if($current_route == 'blog.details' && isset($blog_details)){
$seo_field->where('blog_id', $blog_details->id ?? '');
}
$seo_field = $seo_field->firstOrNew();
?>
<?php if(!empty($seo_field['meta_title'])): ?>
<title><?php echo e($seo_field['meta_title']); ?></title>
<?php else: ?>
<title><?php echo $__env->yieldPushContent('title'); ?> | <?php echo e(config('app.name')); ?></title>
<?php endif; ?>
<meta name="keywords" content="<?php echo e($seo_field['mets_keywords'] ?? ''); ?>">
<meta name="description" content="<?php echo e($seo_field['meta_description'] ?? ''); ?>">
<meta name="robots" content="<?php echo e($seo_field['meta_robot'] ?? ''); ?>">
<link rel="canonical" href="<?php echo e($seo_field['canonical_url'] ?? ''); ?>" />
<link rel="custom" href="<?php echo e($seo_field['custom_url'] ?? ''); ?>" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="<?php echo e($seo_field['meta_title'] ?? ''); ?>">
<?php echo removeScripts($seo_field['json_ld'] != strip_tags($seo_field['json_ld']) ? $seo_field['json_ld']:''); ?>
<meta property="og:title" content="<?php echo e($seo_field['og_title'] ?? ''); ?>" />
<meta property="og:description" content="<?php echo e($seo_field['og_description'] ?? ''); ?>" />
<meta property="og:image" content="<?php echo e(get_image($seo_field['og_image'] ?? '')); ?>" />
<?php /**PATH /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/layouts/seo.blade.php ENDPATH**/ ?>