@extends('provider.provider') @section('content')
{{-- PAGE HEADER --}}

{{ __('Promote Service') }}

{{-- PACKAGES --}}
@forelse ($packages as $plan)
{{-- CARD HEADER --}}
{{ $plan->package_title }}
{{-- CARD BODY --}}

{{ $currencySymbol }}{{ number_format($plan->price, 2) }}

  • {{ $plan->package_duration }} {{ $plan->package_term }} promote
  • @if ($plan->description)
  • {!! $plan->description !!}
  • @endif
{{-- ACTIVE / BUY --}} @if($activePromotion && $activePromotion->package_id == $plan->id) Active Plan @else @endif
@empty

No promote service packages available.

@endforelse
@endsection @push('scripts') @endpush