1. Go to this page and download the library: Download authanram/laravel-flatfile 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/ */
authanram / laravel-flatfile example snippets
namespace App\Models;
use Authanram\FlatFile\FlatFileModel;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Post extends Model
{
use FlatFileModel;
use SoftDeletes;
protected $schema = [
'title' => 'string',
'body' => 'string',
'published_at' => 'datetime',
];
protected $fillable = [
'title',
'body',
'published_at',
];
}
use App\Models\Post;
Post::create([
'title' => 'New package arrived: laravel-flatfile',
'body' => 'Solving the issue of...',
'published_at' => now()->addHour(),
])