@extends('master-user') @section('content')
@if(!$hasAnyPaidPlan)

Manage Prefixes/Headers

You don't have any PAID plan to use this feature.
@else

Add Prefix/Header

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
(Please note, the Prefix is case sensitive)

Important Notes:

  • It might take up to 24 hours to review your Prefix/Header request.
  • These prefixes/headers might need verification even if they are approved. Please keep necessary supporting documents ready to justify the Prefix/Header uses, if asked.
  • The supporting document might contain any one from following (issued by recognized Govt. institution):
    • Business Registration Certificate by Govt.
    • GST Registration Certificate
    • Agreement Deed
  • If you fail to provide such documents, the prefix/header will be released to the free pool and anyone can register, except you.

Registered Prefixes/Headers

@if (session('success'))
{{ session('success') }}
@endif
@if($userPrefixes->count()) @foreach ($userPrefixes as $prefix) @php $labelClass = 'info'; if($prefix->status == 'active'){ $labelClass = 'success'; }elseif($prefix->status == 'rejected'){ $labelClass = 'danger'; } @endphp @endforeach @else @endif
Prefix/Header Status Remark Registered On Actions
{{ $prefix->prefix }} {!! getUserFriendlyName($prefix->status) !!} {!! $prefix->remarks !!} {!! convertDateTimeFormat($prefix->created_at, 'd-M-Y') !!} @if($prefix->status !='rejected')
@csrf @method('DELETE')
@endif
No Prefix/Header registered with your account.
@endif
@endsection