|
Server IP : 72.167.149.90 / Your IP : 216.73.216.228 Web Server : Apache System : Linux server.zoomride.app 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64 User : zoomride2022 ( 1001) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zoomride2022/.trash/projects/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
@if(moduleExists('PromoteFreelancer'))
@if(get_static_option('project_enable_disable') != 'disable')
<style>
.single-project {
position: relative;
}
.pro-profile-badge {
position: absolute;
right: 5px;
top: 5px;
border-radius:20px;
background: #FAF5FF;
color: #9e4cf4;
font-weight: 600;
}
.pro-icon-background {
display: flex;
justify-content: center;
align-items: center;
background: #9e4cf4;
padding: 3px;
border-radius: 50%;
color: #fff;
font-size: 12px;
}
</style>
<!-- Project area starts -->
@if($promoted_projects->count() >=1)
<section class="project-area pat-50 pab-50" data-padding-top="{{$padding_top ?? ''}}" data-padding-bottom="{{$padding_bottom ?? ''}}" style="background-color:{{$section_bg ?? ''}}">
<div class="container">
<div class="section-title text-left append-flex">
<h2 class="title"> {{ $title ?? __('Promoted Projects') }} </h2>
<div class="append-project"></div>
</div>
<div class="row mt-5">
<div class="col-12">
@if($promoted_projects->count() >=1)
<div class="global-slick-init project-slider nav-style-one slider-inner-margin" data-rtl="{{get_user_lang_direction() == 'rtl' ? 'true' : 'false'}}" data-appendArrows=".append-project" data-arrows="true" data-infinite="true" data-dots="false" data-slidesToShow="3" data-swipeToSlide="true" data-autoplaySpeed="2500" data-prevArrow='<div class="prev-icon"><i class="fa-solid fa-arrow-left"></i></div>'
data-nextArrow='<div class="next-icon"><i class="fa-solid fa-arrow-right"></i></div>' data-responsive='[{"breakpoint": 1400,"settings": {"slidesToShow": 3}},{"breakpoint": 1200,"settings": {"slidesToShow": 2}},{"breakpoint": 992,"settings": {"slidesToShow": 2}},{"breakpoint": 768,"settings": {"slidesToShow": 1}},{"breakpoint": 576, "settings": {"slidesToShow": 1} }]'>
@if($items <= 1)
@foreach($promoted_projects as $project)
<div class="row">
<div class="col-lg-4">
<div class="project-item wow fadeInUp" data-wow-delay=".1s">
<div class="single-project radius-10">
<div class="single-project-thumb">
<a href="{{ route('project.details', ['username' => $project->project_creator?->username, 'slug' => $project->slug]) }}">
@if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi']))
<img src="{{ render_frontend_cloud_image_if_module_exists( 'project/'.$project->first_image, load_from: $project->load_from) }}" alt="{{ $project->title ?? '' }}">
@else
<img src="{{ asset('assets/uploads/project/'.$project->first_image) ?? '' }}" alt="{{ $project->title ?? '' }}">
@endif
</a>
@if(moduleExists('PromoteFreelancer') && $project->is_pro_project)
<div class="single-project-content-review pro-profile-badge">
<small>
{{ get_static_option('promoted_badge_text', 'Sponsored') }}
</small>
</div>
@endif
</div>
<div class="single-project-content">
<div class="single-project-content-top align-items-center flex-between">
{!! project_rating($project->id) !!}
</div>
<h4 class="single-project-content-title"> <a href="{{ route('project.details', ['username' => $project->project_creator?->username, 'slug' => $project->slug]) }}">{{ $project->title }} </a> </h4>
</div>
<div class="single-project-bottom flex-between">
<span class="single-project-content-price">
@if($project->basic_discount_charge)
{{ float_amount_with_currency_symbol($project->basic_discount_charge) }}
<s>{{ float_amount_with_currency_symbol($project->basic_regular_charge) }}</s>
@else
{{ float_amount_with_currency_symbol($project->basic_regular_charge) }}
@endif
</span>
<div class="single-project-delivery">
<span class="single-project-delivery-icon"> <i class="fa-regular fa-clock"></i> {{ __('Delivery') }} </span>
<span class="single-project-delivery-days"> {{ $project->basic_delivery }} </span>
</div>
</div>
</div>
</div>
</div>
</div>
@endforeach
@else
@foreach($promoted_projects as $project)
<div class="project-item wow fadeInUp" data-wow-delay=".1s">
<div class="single-project radius-10">
<div class="single-project-thumb">
<a href="{{ route('project.details', ['username' => $project->project_creator?->username, 'slug' => $project->slug]) }}">
@if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi']))
<img src="{{ render_frontend_cloud_image_if_module_exists( 'project/'.$project->first_image, load_from: $project->load_from) }}" alt="{{ $project->title ?? '' }}">
@else
<img src="{{ asset('assets/uploads/project/'.$project->first_image) ?? '' }}" alt="{{ $project->title ?? '' }}">
@endif
</a>
@if(moduleExists('PromoteFreelancer') && $project->is_pro_project)
<div class="single-project-content-review pro-profile-badge">
<small>
{{ get_static_option('promoted_badge_text', 'Sponsored') }}
</small>
</div>
@endif
</div>
<div class="single-project-content">
<div class="single-project-content-top align-items-center flex-between">
{!! project_rating($project->id) !!}
</div>
<h4 class="single-project-content-title"> <a href="{{ route('project.details', ['username' => $project->project_creator?->username, 'slug' => $project->slug]) }}">{{ $project->title }} </a> </h4>
</div>
<div class="single-project-bottom flex-between">
<span class="single-project-content-price">
@if($project->basic_discount_charge)
{{ float_amount_with_currency_symbol($project->basic_discount_charge) }}
<s>{{ float_amount_with_currency_symbol($project->basic_regular_charge) }}</s>
@else
{{ float_amount_with_currency_symbol($project->basic_regular_charge) }}
@endif
</span>
<div class="single-project-delivery">
<span class="single-project-delivery-icon"> <i class="fa-regular fa-clock"></i> {{ __('Delivery') }} </span>
<span class="single-project-delivery-days"> {{ $project->basic_delivery }} </span>
</div>
</div>
</div>
</div>
@endforeach
@endif
</div>
@else
<h4 class="text-danger"> {{ __('No promoted Project Found.') }}</h4>
@endif
</div>
</div>
</div>
</section>
@endif
<!-- Project area end -->
@endif
@endif