@extends('frontend.frontend-page-master') @section('site-title') {{$gig->title}} @endsection @section('page-title') {{$gig->title}} @endsection @section('style') @endsection @section('breadcrumb')
  • {!! get_gigs_category_by_id($gig->category_id,'link') !!}
  • {{$gig->title}}
  • @endsection @section('meta-tags') @endsection @section('og-meta') {!! render_og_meta_image_by_attachment_id($gig->image) !!} @endsection @section('edit_link')
  • {{__('Edit Gig')}}
  • @endsection @section('content')
    @if(!empty($gig->gallery)) @else
    {!! render_image_markup_by_attachment_id($gig->image,'','large') !!}
    @endif
    {!! $gig->description !!}
    @php $all_faqs_title = !empty($gig->faqs_title) ? unserialize($gig->faqs_title) : []; $all_faqs_description = !empty($gig->faqs_description) ? unserialize($gig->faqs_description) : []; $rand_number = rand(9999,99999999); @endphp
    @if(!empty($all_faqs_title)) @foreach($all_faqs_title as $key => $faq_title) @if(!empty($faq_title))
    {{$all_faqs_description[$key]}}
    @endif @endforeach @endif
    @php $all_plan_title = !empty($gig->plan_title) ? unserialize($gig->plan_title) : []; $all_plan_price = !empty($gig->plan_price) ? unserialize($gig->plan_price) : []; $all_plan_features = !empty($gig->features) ? unserialize($gig->features) : []; $all_plan_revisions = !empty($gig->revisions) ? unserialize($gig->revisions) : []; $all_plan_delivery_time = !empty($gig->delivery_time) ? unserialize($gig->delivery_time) : []; $all_plan_description = !empty($gig->plan_description) ? unserialize($gig->plan_description) : []; @endphp @if(!empty($all_plan_title)) @endif
    @foreach($all_plan_title as $index => $title) @php $active = $index == 0 ? 'show active' : ''; @endphp
    {{amount_with_currency_symbol($all_plan_price[$index])}}

    {{$all_plan_description[$index]}}

      @php $features = !empty($all_plan_features[$index]) ? explode("\n",$all_plan_features[$index]) : []; @endphp @foreach($features as $item)
    • {{$item}}
    • @endforeach
    {{$all_plan_delivery_time[$index]}} {{__('Days Delivery')}} {{$all_plan_revisions[$index]}} {{__('Time Revisions')}}
    {{get_static_option('gig_single_'.$user_select_lang_slug.'_order_button_title')}}
    @endforeach

    {{get_static_option('gig_single_'.$user_select_lang_slug.'_quote_title')}}

    {{get_static_option('gig_single_'.$user_select_lang_slug.'_quote_button_title')}}
    @endsection @section('scripts') @endsection