??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: home.blade.php
@extends('frontEnd.layout') @section('content') <!-- start Home Slider --> @include('frontEnd.includes.slider') <!-- end Home Slider --> <?php $title_var = "title_" . @Helper::currentLanguage()->code; $title_var2 = "title_" . env('DEFAULT_LANGUAGE'); $details_var = "details_" . @Helper::currentLanguage()->code; $details_var2 = "details_" . env('DEFAULT_LANGUAGE'); $section_url = ""; $ph_count = 0; $ph_count2 = 0; ?> @if(count($HomeTopics2)>0) <section> <div class="container"> <div class="content_body1"> <br> <div class="row"> <div class="home-row-head"> <div class="title_lines">OUR TOURS</div> </div> @foreach($HomeTopics2 as $Topics2) <?php if ($Topics2->$title_var != "") { $title = $Topics2->$title_var; } else { $title = $Topics2->$title_var2; } if ($Topics2->$details_var != "") { $details = $details_var; } else { $details = $details_var2; } if ($section_url == "") { $section_url = Helper::sectionURL($Topics2->webmaster_id); } $topic_link_url = Helper::topicURL($Topics2->id); ?> <div class="col-sm-6 item_wrap"> <div class="news_content"> <div class="row"> <div class="col-sm-5"> @if($Topics2->photo_file !="") <div class="tour_img"> <img src="{{ URL::to('uploads/topics/'.$Topics2->photo_file) }}" alt=""> </div> @endif </div> <div class="col-sm-7"> <a href="{{ url($topic_link_url) }}" class="title">{{$title}}</a> <div class="infos2"> @if($Topics2->price_from !="") <p class="infos2_text"><span>Price from:</span>{{$Topics2->price_from}}</p> @endif @if($Topics2->duration !="") <p><span>Duration:</span>{{$Topics2->duration}}</p> @endif @if($Topics2->sdate !="") <p><span>Availability:</span>{{$Topics2->sdate}}{{$Topics2->edate}}</p> @endif @if($Topics2->dates !="") <p><span>DATES:</span>{{$Topics2->dates}}</p> @endif @if($Topics2->tour_highlight !="") <p><span>TOUR HIGHLIGHTS:</span>{!! $Topics2->tour_highlight !!}</p> @endif </div> </div> <div class="col-sm-12"> <div class="textcontent">{!! mb_substr(strip_tags($Topics2->$details),0, 300)."..." !!}</div> </div> </div> </div> </div> @endforeach <div class="col-lg-12">{{ $HomeTopics2->links() }} </div> </div> </div> </div> </section> @endif <!-----------------------------------------------------------------------------------------------------> @if(count($HomeTopics3)>0) <section class="content123"> <div class="row"> <div class=""> <div class="container"> @foreach($HomeTopics3 as $Topics3) @if($ph_count<1) <?php if ($Topics3->$title_var != "") { $title = $Topics3->$title_var; } else { $title = $Topics3->$title_var2; } if ($Topics3->$details_var != "") { $details = $details_var; } else { $details = $details_var2; } if ($section_url == "") { $section_url = Helper::sectionURL($Topics3->webmaster_id); } $topic_link_url = Helper::topicURL($Topics3->id); ?> <div class="content123 box_a1"> <div class="col-lg-7"> <div class="home-row-head"> <div class="title_lines1"><a href="{{ $topic_link_url }}">{{ $title }}</a></div> </div> <p class="textcontent"> {!! mb_substr(strip_tags($Topics3->$details),0, 300)."..." !!} </p> </div> <div class="col-lg-5"> @if($Topics3->photo_file !="") <div class="widget_img"> <img src="{{ URL::to('uploads/topics/'.$Topics3->photo_file) }}" alt=""> </div> @endif </div> </div> @endif <?php $ph_count++; ?> @endforeach </div> </div> </div> </section> @endif <!-----------------------------------------------------------------------------------------------------> @if(count($HomeTopics4)>0) <section> <div class="row"> <div class="home-row-head"> <div class="title_lines">DESTINATIONS </div> </div> <div class="content_pattern" style="background:#eee url('{{ URL::to('assets/frontend/img/map_pattern.jpg') }}')repeat;"> <div class="home-row-head"> <iframe width="100%" height="500px" frameborder="0" allowfullscreen src="{{ URL::to('123/index.html') }}" allowtransparency = "true"> </iframe> </div> </div> <div class="slider1"> @foreach($HomeTopics4 as $Topics4) <?php if ($Topics4->$title_var != "") { $title = $Topics4->$title_var; } else { $title = $Topics4->$title_var2; } if ($Topics4->$details_var != "") { $details = $details_var; } else { $details = $details_var2; } if ($section_url == "") { $section_url = Helper::sectionURL($Topics4->webmaster_id); } $topic_link_url = Helper::topicURL($Topics4->id); ?> <div class="col-lg-2"> @if($Topics4->photo_file !="") <div class="widget_img"> <img src="{{ URL::to('uploads/topics/'.$Topics4->photo_file) }}" alt=""> </div> @endif <div class="home-row-head"> <div class="title_lines"><a href="{{ $topic_link_url }}">{{ $title }}</a></div> </div> </div> @endforeach </div> </div> </section> @endif @endsection