/profanewords

Within this repository, you will find a compilation of the most vulgar words and phrases recognized in human language. Strictly intended for educational purposes, use discretion and responsibility when engaging with the content herein.

profanewords

1). Download the json file 2). Read the file and store the contents in your database 3). Here's an example using PHP

    $file = file_get_contents(storage_path('path to file'));
    $profaneWords = json_decode($file, true);

    foreach ($profaneWords as $words) {
        foreach ($words as $item){
            $valueToStore = $item['word'];
            // TODO enter query to insert the values in your database table
        }
    }