view src/Generator/Model/stubs/model.pivot.stub @ 9:d4730c14806d

Small changes to config generation and table name input
author luka
date Sat, 02 Dec 2023 10:18:52 -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;



}