PHP code example of sencerhan / laravel-db-tools

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

    

sencerhan / laravel-db-tools example snippets


// In your migration:
$table->enum('status', ['active', 'pending', 'cancelled']);
$table->set('permissions', ['read', 'write', 'delete']);

$table->decimal('amount', 8, 2);
$table->unsignedDecimal('price', 10, 2);
$table->float('score', 8, 2);

$table->string('name')->charset('utf8mb4')->collation('utf8mb4_unicode_ci');
$table->decimal('price', 8, 2)->unsigned();
$table->enum('level', ['basic', 'premium'])->default('basic')->nullable();
bash
php artisan db:fetch
bash
php artisan db:fetch --tables=users,posts
bash
php artisan db:fetch --debug
bash
php artisan db:fetch --force