Wip
This commit is contained in:
@@ -28,11 +28,11 @@ class MakePaymentNovaVisaMaster extends Action
|
||||
use InteractsWithQueue, Queueable;
|
||||
|
||||
/**
|
||||
* Action name
|
||||
* Name.
|
||||
*/
|
||||
public function name(): string
|
||||
{
|
||||
return __('Send payment');
|
||||
return __('Make payment');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -25,6 +25,14 @@ class MakeSberPaymentAction extends Action
|
||||
{
|
||||
use InteractsWithQueue, Queueable;
|
||||
|
||||
/**
|
||||
* Name.
|
||||
*/
|
||||
public function name(): string
|
||||
{
|
||||
return __('Make payment');
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform the action on the given models.
|
||||
*/
|
||||
|
||||
@@ -40,14 +40,6 @@ class NovaVisaMasterSetting extends Resource
|
||||
return __('Visa Master Settings');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the displayable singular label of the resource.
|
||||
*/
|
||||
public static function singularLabel(): string
|
||||
{
|
||||
return __('Visa Master Setting');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the fields displayed by the resource.
|
||||
*
|
||||
@@ -59,13 +51,15 @@ class NovaVisaMasterSetting extends Resource
|
||||
return [
|
||||
ID::make('id')->sortable(),
|
||||
|
||||
Text::make('Name')
|
||||
->rules('required', 'string', 'max:255'),
|
||||
Text::make(__('Code'), 'name')
|
||||
->rules('required', 'string', 'max:255')
|
||||
->readonly(! auth()->user()->isMe()),
|
||||
|
||||
Text::make('Display name', 'display_name')
|
||||
->rules('required', 'string', 'max:255'),
|
||||
Text::make(__('Name'), 'display_name')
|
||||
->rules('required', 'string', 'max:255')
|
||||
->readonly(! auth()->user()->isMe()),
|
||||
|
||||
Text::make('Value')
|
||||
Text::make(__('Yazgy'), 'value')
|
||||
->rules('required', 'string', 'max:255'),
|
||||
];
|
||||
}
|
||||
|
||||
@@ -132,6 +132,7 @@
|
||||
"Patronic name": "Atasynyň ady",
|
||||
"Payload Too Large": "Loadük gaty uly",
|
||||
"Payment": "Töleg",
|
||||
"Payments": "Tölegler",
|
||||
"Payment Required": "Töleg talap edilýär",
|
||||
"Pending": "Garaşylýar",
|
||||
"Permanent Redirect": "Hemişelik gönükdirme",
|
||||
@@ -326,5 +327,7 @@
|
||||
"Passport number": "Pasport nomeri",
|
||||
"Fetch loan history": "Karz taryhyny görmek",
|
||||
"Online payment": "Onlaýn töleg",
|
||||
"Online payment history": "Onlaýn töleg taryhy"
|
||||
"Online payment history": "Onlaýn töleg taryhy",
|
||||
"Make payment": "Töleg",
|
||||
"Visa Master Settings": "Visa/Master sazlamalar"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user