ऐसा करने का सबसे आसान तरीका। आशा है आपकी मदद करेगी
DB::table('my_table')->select('id')
->where(DB::raw("UCASE(name)"), $upper_name)
->first();
UCASE - टेक्स्ट को अपर-केस में बदलें
DB::table('my_table')->select('id')
->where(DB::raw("UCASE(name)"), $upper_name)
->first();
UCASE - टेक्स्ट को अपर-केस में बदलें