PHP code example of prakort / laravel-wellness

1. Go to this page and download the library: Download prakort/laravel-wellness 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/ */

    

prakort / laravel-wellness example snippets


use Spatie\Health\Facades\Health;
use prakort\LaravelWellness\FileSizeCheck;

Health::checks([
    FileSizeCheck::new()
        ->disk('s3')
        ->warningThreshold(5)
        ->errorThreshold(10)
        ->fileTypes(['png', 'pdf', 'txt'])
]);