Skip to content

andreapollastri/laracheck-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laracheck Client

Laravel Package for Laracheck

Installation

  • Install vendor via Composer:
composer require andreapollastri/laracheck
  • Update application bootstrap file:
// bootstrap/app.php
return Application::configure(basePath: dirname(__DIR__))
    //
    ->withExceptions(function (Exceptions $exceptions) {
        \Andr3a\Laracheck\Facades\Laracheck::track($exceptions);
    })->create();
    //
  • Add these vars into your .env file:
LARACHECK_API_KEY=<YOUR-LARACHECK-API-KEY>
LARACHECK_SITE_ID=<YOUR-LARACHECK-SITE-ID>
LARACHECK_ENDPOINT=<YOUR-LARACHECK-API-URL>