1
0

Html Validation service

This commit is contained in:
Richard Dern 2024-05-09 01:11:05 +02:00
parent beb701d752
commit 3b02c21e4c

View File

@ -0,0 +1,19 @@
<?php
namespace App\Services;
use Illuminate\Support\Facades\Http;
class HtmlValidator
{
public static function validateSource(string $html)
{
$response = Http::withHeaders([
'Content-Type' => 'text/html; charset=utf-8',
])->withBody($html, 'text/html')->post('http://nu-validator:8888/?out=json');
$json = $response->json();
return $json;
}
}