{{ __('Sell SIM Card') }}

🛒 Sell SIM Card

SIM: {{ $simCard->sim_number }}

@if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

SIM Card Information

SIM Number

{{ $simCard->sim_number }}

@if($simCard->provider)

Provider

{{ $simCard->provider }}

@endif @if($simCard->plan_type)

Plan Type

{{ ucfirst(str_replace('_', ' ', $simCard->plan_type)) }}

@endif
@if($simCard->monthly_cost)

Suggested Monthly Cost

PKR {{ number_format($simCard->monthly_cost, 2) }}

@endif
@csrf

Customer & Sales Information

@error('customer_id')

{{ $message }}

@enderror

Or add new customer

@error('salesman_id')

{{ $message }}

@enderror

Pricing & Fees

@error('sale_price')

{{ $message }}

@enderror
@error('activation_fee')

{{ $message }}

@enderror
@error('monthly_fee')

{{ $message }}

@enderror
@error('contract_months')

{{ $message }}

@enderror

Leave blank for no contract

Sale & Payment Details

@error('sale_date')

{{ $message }}

@enderror
@error('payment_status')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror

What happens when you sell?

  • • A SIM sale record will be created
  • • The SIM card status will change to "Sold"
  • • The SIM will be linked to the customer
  • • Payment tracking will be enabled based on payment status
  • • You can view the sale details in SIM Sales section
Cancel
@endsection