view src/Generator/Model/stubs/model.pivot.stub @ 18:8f15ff18c094 main-dev

removed .php-cs-fixer.cache
author Luka Sitas <sitas.luka.97@gmail.com>
date Wed, 26 Feb 2025 19:13:04 -0500
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;



}