@extends('layouts.app') @section('title', $service->name . ' - Texora') @section('meta_description', $service->short_description) @section('content') @php $waNum = App\Models\SiteSetting::where('key','whatsapp_number')->value('value') ?? '923001234567'; $packages = $service->packages->sortBy('sort_order')->values(); $minDays = $packages->min('delivery_days'); $maxDays = $packages->max('delivery_days'); $firstPrice = $packages->first() ? $packages->first()->currency . ' ' . number_format($packages->first()->price, 0) : 'Custom quote'; @endphp
Back to services

{{ $service->name }}.

{{ $service->short_description ?: \Illuminate\Support\Str::limit(strip_tags($service->description), 180) }}

{{ $service->name }}
Starting at

{{ $firstPrice }}

Transparent package pricing from your live Texora service data.

Timeline

{{ $minDays && $maxDays ? $minDays . '-' . $maxDays . ' days' : 'Fast' }}

Document collection, review, submission, and status updates handled by your specialist.

Support

Expert led

Use chat, WhatsApp, or consultation if you need guidance before placing an order.

Packages.

Select the profile that matches your case. The checkout and registration flow stays exactly the same.

@forelse($packages as $pkg)
{{ $pkg->is_popular ? 'Popular' : 'Package' }}

{{ $pkg->name }}

{{ $pkg->description ?: 'Includes expert filing support, document review, and completion guidance.' }}

{{ $pkg->currency }} {{ number_format($pkg->price, 0) }}
@if(!empty($pkg->features))
    @foreach(array_slice($pkg->features, 0, 5) as $feature)
  • {{ $feature }}
  • @endforeach
@endif @include('frontend.partials.service-card-actions', [ 'serviceName' => $service->name, 'packageName' => $pkg->name, 'startClick' => 'activeModal = ' . $pkg->id, 'waNumber' => $waNum, ])
@empty
Quote

Custom package

Contact Texora and we will prepare the right scope for this service.

@include('frontend.partials.service-card-actions', [ 'serviceName' => $service->name, 'startUrl' => route('consultation'), 'startLabel' => 'Start Now', 'waNumber' => $waNum, ])
@endforelse
@foreach($packages as $pkg) @endforeach
@if($service->requirements->count())

Documents.

Prepare these requirements before starting. Your specialist will verify everything before filing.

@foreach($service->requirements as $i => $req)
{{ str_pad($i + 1, 2, '0', STR_PAD_LEFT) }}

{{ $req->document_name }}

{{ $req->description ?: 'Secure upload required for this service.' }}

@endforeach
@endif

Process.

Simple, tracked, and designed to remove back-and-forth from compliance work.

@foreach([ ['Select package', 'Choose the package that fits your business case.'], ['Upload documents', 'Share requirements through the secure order workflow.'], ['Expert filing', 'Texora reviews, prepares, files, and updates you.'], ['Receive completion', 'Get your certificate, confirmation, or filed return.'], ] as $i => $step)
{{ $step[0] }} {{ $step[1] }} {{ str_pad($i + 1, 2, '0', STR_PAD_LEFT) }}
@endforeach
@if($relatedServices->count())

Related.

Other services in the same Texora category.

@foreach($relatedServices as $related)
{{ $related->category?->name ?? 'Service' }}

{{ $related->name }}

{{ $related->short_description ?: \Illuminate\Support\Str::limit(strip_tags($related->description), 120) }}

@include('frontend.partials.service-card-actions', [ 'serviceName' => $related->name, 'startUrl' => route('services.show', $related->slug) . '#packages', 'waNumber' => $waNum, ])
@endforeach
@endif
@endsection