Nejjednodušší způsob, jak to udělat. Hope vám pomůže
DB::table('my_table')->select('id')
->where(DB::raw("UCASE(name)"), $upper_name)
->first();
UCASE - Převeďte text na velká písmena
DB::table('my_table')->select('id')
->where(DB::raw("UCASE(name)"), $upper_name)
->first();
UCASE - Převeďte text na velká písmena