skip to Main Content

Best way to translate inputs – Laravel

Good evening, Today I've encountered a question/problem. I'll get right into it. So basically I have form which is used to create meal. Meal table (migration) looks like this: $table->uuid('id')->primary(); $table->uuid('restaurant_id')->nullable(); $table->string('name_lt', 100); $table->string('name_en', 100); $table->string('name_ru', 100); $table->smallInteger('prep_time'); $table->string('image', 150);…

VIEW QUESTION
Back To Top
Search