PHP code example of healthengine / laravel-chronos
1. Go to this page and download the library: Download healthengine/laravel-chronos 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/ */
healthengine / laravel-chronos example snippets
use HealthEngine\LaravelChronos\ChronosTimestamps;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use ChronosTimestamps;
protected $casts = [
// Throws error: "Call to undefined method Cake\Chronos\Chronos::toImmutable()"
// 'processed_at' => 'immutable_date',
// Throws error: "Call to undefined method Cake\Chronos\Chronos::toImmutable()"
// 'processed_at' => 'immutable_datetime',
'processed_at' => 'datetime',
];
}