Laravel Helper Function untuk string cek ada di string lain

use Illuminate\Support\Str;

$contains = Str::contains('This is my name', 'my');
Mohamad