$query->orWhereHas('container', function ($container) use ($keyword) {
            $container->whereRaw('name LIKE ?', ["%{$keyword}%"]);
        })->orWhereHas('container.station', function ($station) use ($keyword) {
            $station->whereRaw('name LIKE ?', ["%{$keyword}%"]);
        })->orWhereHas('container.structure', function ($structure) use ($keyword) {