view src/Generator/Model/stubs/model.pivot.stub @ 14:c969ed13c570 main-dev

Changes for various files
author luka
date Mon, 23 Sep 2024 20:35:14 -0400
parents b0b2e79ad8e6
children 827efbf4d73c
line wrap: on
line source

<?php

namespace {{ namespace }};

use Illuminate\Database\Eloquent\Relations\Pivot;

class {{ class }} extends Pivot
{
    //

    /**
     * Indicates if the model should be timestamped.
		 * By default our pivots will not use timestamps
     *
     * @var bool
     */
    public $timestamps = false;



}