13 lines
168 B
PHP
13 lines
168 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Pivots;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||
|
|
||
|
class ViaPivot extends Pivot
|
||
|
{
|
||
|
protected $casts = [
|
||
|
'datetime' => 'datetime',
|
||
|
];
|
||
|
}
|