TanchoToplineCargo/resources/views/client/target/inside/country_single.blade.php

28 lines
867 B
PHP
Raw Permalink Normal View History

2024-05-05 04:47:49 +00:00
@extends('client.target.partials.layout')
@section('header')
<title>{{$country->title}} - {{env("APP_NAME")}}</title>
@endsection
@section('content')
<section class="banner-background d-flex align-items-center text-center">
<div class="container">
<p class="medium-text text-light">{{$country->title}}</p>
</div>
</section>
<section class="pt-5 custom-background">
<div class="container">
<div class="row g-5 pb-5">
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$country->title}}</p>
<div class="col-md-3">
<img class="img-fluid rounded" src="{{site_url($country->image_thumb)}}" alt="">
</div>
<div class="col-md-9">
<p> {!!processForShortcode($country->details)!!} </p>
</div>
</div>
</div>
</section>
@endsection