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