view src/Generator/Model/stubs/model.pivot.stub @ 19:19b7a8de0019 main-dev

updating namespace from typo
author Luka Sitas <sitas.luka.97@gmail.com>
date Wed, 26 Feb 2025 19:26:08 -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;



}