PHP code example of varik-kos / tesseract-laravel
1. Go to this page and download the library: Download varik-kos/tesseract-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/ */
varik-kos / tesseract-laravel example snippets
use TesseractDb\Facades\Tesseract;
Tesseract::table('users')->put('ada', ['name' => 'Ada', 'age' => 36]);
$user = Tesseract::get('users', 'ada');
$rows = Tesseract::table('users')->where('age', 'gt', 30);
bash
php artisan vendor:publish --tag=tesseract-config