Skip to content

Commit 0509810

Browse files
committed
casting dates for laravel 10 #64
1 parent ef48b2e commit 0509810

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/Models/Ip.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ class Ip extends Model
1111

1212
protected $table = 'firewall_ips';
1313

14-
protected $dates = ['deleted_at'];
15-
1614
protected $fillable = ['ip', 'log_id', 'blocked'];
1715

16+
protected $casts = [
17+
'deleted_at' => 'datetime',
18+
];
19+
1820
public function log()
1921
{
2022
return $this->belongsTo('Akaunting\Firewall\Models\Log');

src/Models/Log.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ class Log extends Model
1111

1212
protected $table = 'firewall_logs';
1313

14-
protected $dates = ['deleted_at'];
15-
1614
protected $fillable = ['ip', 'level', 'middleware', 'user_id', 'url', 'referrer', 'request'];
1715

16+
protected $casts = [
17+
'deleted_at' => 'datetime',
18+
];
19+
1820
public function user()
1921
{
2022
return $this->belongsTo(config('firewall.models.user'));

0 commit comments

Comments
 (0)