mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge pull request #14407 from snipe/bug/sc-25019_added_created_at_pivot
Added created_at to license pivot
This commit is contained in:
commit
1df56a7cab
|
@ -337,7 +337,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo
|
||||||
*/
|
*/
|
||||||
public function licenses()
|
public function licenses()
|
||||||
{
|
{
|
||||||
return $this->belongsToMany(\App\Models\License::class, 'license_seats', 'assigned_to', 'license_id')->withPivot('id');
|
return $this->belongsToMany(\App\Models\License::class, 'license_seats', 'assigned_to', 'license_id')->withPivot('id', 'created_at', 'updated_at');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -151,7 +151,7 @@
|
||||||
<i class="fa-lock" aria-hidden="true"></i> {{ str_repeat('x', 15) }}
|
<i class="fa-lock" aria-hidden="true"></i> {{ str_repeat('x', 15) }}
|
||||||
@endcan
|
@endcan
|
||||||
</td>
|
</td>
|
||||||
<td>{{ $license->pivot->created_at }}</td>
|
<td>{{ $license->pivot->updated_at }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@php
|
@php
|
||||||
$lcounter++
|
$lcounter++
|
||||||
|
|
Loading…
Reference in a new issue