1. Go to this page and download the library: Download statamic/eloquent-driver 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/ */
public function up()
{
Schema::create('entries', function (Blueprint $table) {
$table->string('description')->nullable();
$table->json('featured_images')->nullable();
});
}
namespace App\Models;
class Entry extends \Statamic\Eloquent\Entries\EntryModel
{
protected $casts = [
// The casts from Statamic's base model...
'date' => 'datetime',
'data' => 'json',
'published' => 'boolean',
// Your custom casts...
'featured_images' => 'json',
];
}
class Entry extends \Statamic\Eloquent\Entries\UuidEntryModel