1. Go to this page and download the library: Download pirabyte/erecht24-laravel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pirabyte / erecht24-laravel example snippets
use Pirabyte\ERecht24Laravel\ERecht24;
use Pirabyte\ERecht24Laravel\Enums\LegalTextType;
$data = app(ERecht24::class)->document(LegalTextType::PrivacyPolicy, 'de');
echo $data->html;
use Pirabyte\ERecht24Laravel\Facades\ERecht24;
$html = ERecht24::privacyPolicy()->html;