بيانات الحساب والاشتراك

{!! Form::label('tbl_user_id', ' ' . __('models/subscriptions.fields.tbl_user_id', [], 'ar') . ':', [], false) !!} {!! Form::text('user', $subscription->user?->full_name, ['class' => 'form-control', 'id' => 'user', 'disabled']) !!}
{!! Form::label('plan', ' ' . __('models/subscriptions.fields.plan', [], 'ar') . ':', [], false) !!} {!! Form::text('plan', $subscription->plan, ['class' => 'form-control', 'id' => 'plan', 'disabled']) !!}
{!! Form::label('owner_percentage', ' ' . __('models/subscriptions.fields.owner_percentage', [], 'ar') . ':', [], false) !!} {!! Form::text('owner_percentage', $subscription->owner_percentage . '%', ['class' => 'form-control', 'id' => 'owner_percentage', 'disabled']) !!}
{!! Form::label('employee_count', ' ' . __('models/subscriptions.fields.employee_count', [], 'ar') . ':', [], false) !!} {!! Form::text('employee_count', $subscription->employee_count, ['class' => 'form-control', 'id' => 'employee_count', 'disabled']) !!}

نوع وتفاصيل الفاتورة

{!! Form::label('type', ' ' . __('models/invoices.fields.type', [], 'ar').':', [], false) !!} {!! Form::select('type', __('models/invoices.type', [], 'ar'), null, ['placeholder' => 'اختر نوع الفاتورة', 'class' => 'form-control select2', 'required', 'id' => 'type', 'style' => 'width: 100%;']) !!}
تفاصيل فاتورة الاشتراك
{!! Form::label('count_of_units', ' ' . __('models/subscriptions.fields.count_of_units', [], 'ar') . ':', [], false) !!} {!! Form::text('count_of_units', $subscription->count_of_units, ['class' => 'form-control bg-light', 'id' => 'count_of_units', 'disabled']) !!}
{!! Form::label('subscription_cost', ' ' . __('models/subscriptions.fields.subscription_cost', [], 'ar') . ':', [], false) !!}
{!! Form::text('subscription_cost', $subscription->subscription_cost, ['class' => 'form-control', 'id' => 'subscription_cost']) !!}
{!! Form::label('employee_cost', ' ' . __('models/invoices.fields.employee_cost', [], 'ar').':', [], false) !!}
{!! Form::text('employee_cost', null, ['class' => 'form-control', 'id' => 'employee_cost']) !!}
{!! Form::label('payment_mode', ' ' . __('models/subscriptions.fields.payment_mode', [], 'ar') . ':', [], false) !!} {!! Form::select('payment_mode', __('models/subscriptions.payment_mode', [], 'ar'), null, ['placeholder' => 'اختر طريقة الدفع', 'class' => 'form-control select2', 'style' => 'width: 100%;']) !!}
{!! Form::label('services', ' ' . __('models/subscriptions.fields.services', [], 'ar') . ':', [], false) !!} {!! Form::select('services[]', $services, null, ['class' => 'form-control select2', 'multiple' => 'multiple', 'id' => 'services_id', 'style' => 'width: 100%;']) !!}
تفاصيل فاتورة التسوية
{!! Form::label('reserved_payment_mode', ' ' . __('models/subscriptions.fields.reserved_payment_mode', [], 'ar') . ':', [], false) !!} {!! Form::select('reserved_payment_mode', __('models/subscriptions.reserved_payment_mode', [], 'ar'), $subscription->reserved_payment_mode, ['class' => 'form-control select2', 'id' => 'reserved_payment_mode', 'style' => 'width: 100%;']) !!}

معلومات الدفع والحالة

{!! Form::label('status', ' ' . __('models/invoices.fields.status', [], 'ar').':', [], false) !!} {!! Form::select('status', __('models/invoices.status', [], 'ar'), null, ['placeholder' => 'اختر الحالة', 'class' => 'form-control select2', 'required', 'id' => 'status', 'style' => 'width: 100%;']) !!}
{!! Form::label('payment_method', ' ' . __('models/invoices.fields.payment_method', [], 'ar').':', [], false) !!} {!! Form::select('payment_method', __('models/invoices.payment_method', [], 'ar'), null, ['placeholder' => 'اختر وسيلة الدفع', 'class' => 'form-control select2', 'id' => 'payment_method', 'style' => 'width: 100%;']) !!}
{!! Form::label('representative_id', ' ' . __('models/invoices.fields.representative_id', [], 'ar') . ':', [], false) !!} {!! Form::select('representative_id', $representatives, null, [ 'placeholder' => 'اختر المندوب (اختياري)', 'class' => 'form-control select2', 'id' => 'representative_id', 'style' => 'width: 100%;']) !!}
{!! Form::label('reference_number', ' ' . __('models/invoices.fields.reference_number', [], 'ar').':', [], false) !!} {!! Form::text('reference_number', null, ['class' => 'form-control', 'id' => 'reference_number', 'placeholder' => 'أدخل الرقم المرجعي للحوالة']) !!}
{!! Form::label('notes', ' ' . __('models/invoices.fields.notes', [], 'ar').':', [], false) !!} {!! Form::textarea('notes', null, ['class' => 'form-control', 'id' => 'notes', 'rows' => 3, 'placeholder' => 'إضافة أي ملاحظات أخرى...']) !!}