view src/Generator/Model/stubs/model.pivot.stub @ 6:b46922d4a301

Update for psr compliance
author luka
date Thu, 12 Oct 2023 19:44:22 -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;



}