SEMICOLON;
SEMICOLON;
Explore posts from servers
RRailway
Created by SEMICOLON; on 3/9/2024 in #✋|help
transfer service to another project
Hello, I have an api running in a specific project, and a database and backup nodejs app running as two services in a different project, can I merge them all together in one project (as multiple services) without the need to delete and create a new service and configure them from the start, just transfer? And is it recommended to combine them all together in first place? They all related services but just asking to be sure. And thanks in advance 🙏🏼
5 replies
RRailway
Created by SEMICOLON; on 11/13/2023 in #✋|help
backup issue after migration
No description
13 replies
RRailway
Created by SEMICOLON; on 9/1/2023 in #✋|help
Payment shows unsuccessful even though it's not
Hello, I got an email today morning about last month usage (1 Aug - 1 Sep) payment shows unsuccessful even though it's not, The amount is charged from my bank account, and got a full receipt from my bank showing that the amount is actually charged successfully. In Railway.app dashboard it says:
You have an unpaid invoice. Click here to pay your invoice in order to avoid disconnection of services.
You have an unpaid invoice. Click here to pay your invoice in order to avoid disconnection of services.
I already contacted [email protected] hoping to solve the issue, but mean while if there is anything I can do to resolve it to avoid disconnection of services please do share with me 🙏🏼
15 replies
FFilament
Created by SEMICOLON; on 8/7/2023 in #❓┊help
Fill form data when a specific field changes
Hello, I have this form:
$form->schema([
Forms\Components\TextInput::make('hourly_price')
->label(trans('admin.room.hourly_price'))
->numeric()
->default(0)
->required(),
Forms\Components\TextInput::make('daily_price')
->label(trans('admin.room.daily_price'))
->numeric()
->default(0)
->required(),
Forms\Components\TextInput::make('monthly_price')
->label(trans('admin.room.monthly_price'))
->numeric()
->default(0)
->required(),
]);
$form->schema([
Forms\Components\TextInput::make('hourly_price')
->label(trans('admin.room.hourly_price'))
->numeric()
->default(0)
->required(),
Forms\Components\TextInput::make('daily_price')
->label(trans('admin.room.daily_price'))
->numeric()
->default(0)
->required(),
Forms\Components\TextInput::make('monthly_price')
->label(trans('admin.room.monthly_price'))
->numeric()
->default(0)
->required(),
]);
I want when hourly_price value changes I calculate the daily_price and monthly_price and fill them automatically. How can I implement this? I tried using afterStateUpdated but it seems that I cannot access all the form data and manipulate the values.
11 replies