PHP code example of turso / libsql-laravel
1. Go to this page and download the library: Download turso/libsql-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/ */
turso / libsql-laravel example snippets
use Illuminate\Support\Str;
return [
"default" => env("DB_CONNECTION", "libsql"),
"connections" => [
"libsql" => [
"driver" => env("DB_CONNECTION", "libsql"),
"database" => database_path("dev.db"),
],
// ...
],
];