clrghouz/app/Models/Pivots/ViaPivot.php

13 lines
175 B
PHP
Raw Normal View History

<?php
2024-11-04 07:25:49 +00:00
namespace App\Models\Pivots;
use Illuminate\Database\Eloquent\Relations\Pivot;
class ViaPivot extends Pivot
{
protected $casts = [
'datetime' => 'datetime',
];
}