@php $locale = app()->getLocale(); $isRtl = $locale === 'ar'; $currency = \App\Models\Setting::currencyLabel($locale); $typeLabels = [ 'subscription' => $isRtl ? 'اشتراك' : 'Subscription', 'class' => $isRtl ? 'حصة' : 'Class', 'personal_training' => $isRtl ? 'تدريب شخصي' : 'Personal Training', 'product' => $isRtl ? 'منتج' : 'Product', 'other' => $isRtl ? 'أخرى' : 'Other', ]; @endphp @extends('layouts.app') @section('title', $isRtl ? 'دفعة جديدة' : 'New Payment') @section('content')
@endsection