Package Data | |
---|---|
Maintainer Username: | alone |
Maintainer Contact: | hi@anlo.ng (Alone) |
Package Create Date: | 2017-01-01 |
Package Last Update: | 2021-05-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:19:10 |
Package Statistics | |
---|---|
Total Downloads: | 7,758 |
Monthly Downloads: | 63 |
Daily Downloads: | 0 |
Total Stars: | 12 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 0 |
$ composer require al-one/laravel-soft-deletes-unix -vvv
or
$ composer require al-one/laravel-soft-deletes-unix:dev-master -vvv
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Alone\LaravelSoftDeletesUnix\Eloquent\SoftDeletesUnix;
class Flight extends Model
{
use SoftDeletesUnix;
protected $dateFormat = 'U';
protected $dates = ['deleted_at'];
}
MIT