if ($searchKeywords || $orientation) {
            $backgroundImages = DB::table('background_images')
            ->when($searchKeywords, function ($query, $searchKeywords) {
                return $query->where('credits', $searchKeywords)->orWhere('credits', 'like', '%'.$searchKeywords.'%');
            })