PHP code example of netflex / database

1. Go to this page and download the library: Download netflex/database 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/ */

    

netflex / database example snippets



return [
    'connections' => [

        'netflex' => [
            'driver' => 'netflex',
            'adapter' => 'entry',
        ]
    ]
];

[
    'driver' => 'netflex',
    'adapter' => 'entry',
    'connection' => 'my-connection' // Refers to a Netflex API connection
]

namespace App\Models;

use Netflex\Database\Eloquent\Model;

class Article extends Model
{
    //
}

return [
    'default' => 'structures',

    'connections' => [

        'structures' => [
            'driver' => 'netflex',
            'adapter' => 'entry',
        ]
    ]
];



namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Article extends Model
{
    //
}



namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Article extends Model
{
    protected $table = '10000';
}



namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Article extends Model
{
    protected $connection = 'structures';
    protected $table = '10000';
}

const CREATED_AT = 'created';
const UPDATED_AT = 'updated';



use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
    /**
     * Run the migrations.
     */
    public function up(): void
    {
        Schema::create('articles', function (Blueprint $table) {
            $table->id(); // Ignored by Netflex
            $table->string('intro');
            $table->timestamp('written_at')->useCurrent(); // Sets the default_value config to "{datetime}"
            $table->text('body')->widget('editor-large'); // You may specify which widget to use in the Netflex UI
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::dropIfExists('articles');
    }
};