@extends('frontend.layouts.master') @section('title') {{ __('header.home_title') }} @endsection @section('main-content') @include('frontend.layouts.notification') @if(count($banners)>0)
@endif
{{ __('about.about_title') }}

{{ __('about.home_subtitle') }}

@php $settings=DB::table('settings')->get(); @endphp

{{-- @foreach($settings as $data) {{$data->description}} @endforeach --}} {{ __('about.home_content') }}

{{--

So when it comes to booking the perfect hotel, vacation rental, resort, apartment, guest house, or tree house, we’ve got you covered.

--}} {{ __('about.read_btn') }}
{{--
--}}
{{ __('about.room_title') }}

{{ __('about.room_subtitle') }}

@php $room_lists=DB::table('rooms')->where('status','active')->orderBy('id','DESC')->limit(3)->get(); @endphp @foreach($room_lists as $room)
@php $photo=explode(',',$room->photo); @endphp {{ Storage::url($room->photo) }}

{{$room->title}}

@php $after_discount=($room->price-($room->price*$room->discount)/100); @endphp

{{number_format($room->price,2)}} FBU/Pernight

{{ __('about.more_btn') }}
@endforeach
{{ __('about.service_title') }}

{{ __('about.service_subtitle') }}

@php $services=DB::table('services')->where('status','active')->get(); @endphp @if($services) @foreach($services as $serv)
@if($serv->photo) {{ Storage::url($serv->photo) }} @else # @endif

{{$serv->title}}

{{$serv->summary}}

@endforeach @endif
{{ __('about.testimony_title') }}

{{ __('about.testimony_subtitle') }}

{{ __('about.news_subtitle') }}

{{ __('header.news_title') }}

@if($posts) @foreach($posts as $post)
@php $photo=explode(',',$post->photo); @endphp

{{$post->title}}

{{$post->created_at->format('d M , Y. D')}}
{{ __('about.continue_read_btn') }}
@endforeach @endif
@endsection