| 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: | 2025-11-07 03:01:31 |
| Package Statistics | |
|---|---|
| Total Downloads: | 7,999 |
| Monthly Downloads: | 5 |
| Daily Downloads: | 2 |
| Total Stars: | 13 |
| Total Watchers: | 1 |
| 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