view src/Generator/Model/stubs/model.pivot.stub @ 13:7ee152c22478 main-dev

Merging
author luka
date Wed, 24 Apr 2024 20:11:52 -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;



}