@extends('layouts.app') @section('title', 'Order Tools Service') @section('main')
@if (session('error'))

{{ session('error') }}

@endif @if (session('success'))

{{ session('success') }}

@endif

{{ $tools->service_name }}

Professional Tools service solution

Service Price

@if ($user_group?->price_type === "Fixed Rate") {{ $currency->icon }}{{ number_format((($tools->credit + $user_group->price) * $currency->rate), 2) }} @elseif ($user_group?->price_type === "Percentage") {{ $currency->icon }}{{ number_format((($tools->credit * (1 + ($user_group->price / 100))) * $currency->rate), 2) }} @else {{ $currency->icon }}{{ number_format(($tools->credit * $currency->rate), 2) }} @endif

Validity Time

{{ $related->tools_group->expire_in ." ". $related->tools_group->expire_unit }}

@csrf

Service Information

Simply fill in the details and proceed to pay for your orders using your credit balance. You currently have @if ($user_group?->price_type === 'Fixed Rate') {{ $currency->icon }}{{ number_format((($tools->credit + $user_group->price) * $currency->rate), 2) }} @elseif ($user_group?->price_type === 'Percentage') {{ $currency->icon }}{{ number_format((($tools->credit * (1 + ($user_group->price / 100))) * $currency->rate), 2) }} @else {{ $currency->icon }}{{ number_format(($tools->credit * $currency->rate), 2) }} @endif of credits in your wallet.

{!! $tools->description !!}
@endsection @push('script') @endpush