mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 21:00:58 +00:00
21 lines
349 B
PHP
21 lines
349 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MarketplaceCredential extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
protected $hidden = ['credential'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'expires_at' => 'datetime',
|
|
'paired_at' => 'datetime',
|
|
];
|
|
}
|
|
}
|