Lang get not working
User Lang::get("db.language.{$language->lang_name}") not working Assistant The `Lang::get("db.language.{$language->lang_name}")` syntax in Laravel may not be working if: 1. **Translation File Structure**: The translation file may not be in the correct location. Ensure that you have a file named `language.php` inside `resources/lang/{locale}/db/`. The directory structure should look like: resources └── lang └── en └── db └── language.php 2. […]