PHP code example of escolalms / tracker
1. Go to this page and download the library: Download escolalms/tracker 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/ */
escolalms / tracker example snippets
Tracker::disable();
Http::get('api/admin/example-route')
Tracker::enable();
...
Tracker::ignoreUris(['api/admin/example-route']);
Http::get('api/admin/example-route')
...
Tracker::prefix('api');
Http::get('api/example-route')