comparison src/Generator/Model/stubs/model.pivot.stub @ 5:b0b2e79ad8e6

Not exatly sure what was changed but commiting to it :)
author luka
date Thu, 12 Oct 2023 19:41:04 -0400
parents a20439b1c9d3
children 827efbf4d73c
comparison
equal deleted inserted replaced
4:a20439b1c9d3 5:b0b2e79ad8e6
5 use Illuminate\Database\Eloquent\Relations\Pivot; 5 use Illuminate\Database\Eloquent\Relations\Pivot;
6 6
7 class {{ class }} extends Pivot 7 class {{ class }} extends Pivot
8 { 8 {
9 // 9 //
10
11 /**
12 * Indicates if the model should be timestamped.
13 * By default our pivots will not use timestamps
14 *
15 * @var bool
16 */
17 public $timestamps = false;
18
19
20
10 } 21 }