Server IP : 66.235.200.170 / Your IP : 18.221.228.143 Web Server : Apache System : Linux gator4410.hostgator.com 5.14.0-162.23.1.9991722448259.nf.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 31 18:11:45 UTC 2024 x86_64 User : bmgxafte ( 1214) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home2/bmgxafte/www/core/resources/views/frontEnd/ |
Upload File : |
@extends('frontEnd.layouts.master') @section('content') <div> <?php $title_var = "title_" . @Helper::currentLanguage()->code; $title_var2 = "title_" . config('smartend.default_language'); $webmaster_section_title = ""; $category_title = ""; $page_title = ""; $category_image = ""; if (@$WebmasterSection != "none") { if (@$WebmasterSection->$title_var != "") { $webmaster_section_title = @$WebmasterSection->$title_var; } else { $webmaster_section_title = @$WebmasterSection->$title_var2; } $page_title = $webmaster_section_title; if (@$WebmasterSection->photo != "") { $category_image = URL::to('uploads/topics/' . @$WebmasterSection->photo); } } ?> @if($category_image !="") @include("frontEnd.topic.cover") @endif <section class="breadcrumbs"> <div class="container"> <div class="d-flex justify-content-between align-items-center"> <h2>{{ $page_title }}</h2> <ol> <li><a href="{{ Helper::homeURL() }}">{{ __("backend.home") }}</a></li> @if($webmaster_section_title !="") <li class="active">{!! $webmaster_section_title !!}</li> @elseif(@$search_word!="") <li class="active">{{ @$search_word }}</li> @else <li class="active">{{ $User->name }}</li> @endif </ol> </div> </div> </section> <section id="content"> <div class="container"> <div class="row"> <div class="col-lg-12"> @include('frontEnd.form',["FormSectionID"=>@$WebmasterSection->id]) </div> </div> </div> </section> </div> @endsection