We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715abce commit 0c7eb8cCopy full SHA for 0c7eb8c
src/Concerns/InteractsWithTicketRelations.php
@@ -6,7 +6,7 @@ trait InteractsWithTicketRelations
6
{
7
/**
8
* Associate Labels into an existing ticket
9
- *
+ *
10
* @param mixed $id
11
* @param array $attributes
12
* @param bool $touch
src/Models/Ticket.php
@@ -77,11 +77,11 @@ public function labels(): BelongsToMany
77
$table = config('laravel_ticket.table_names.label_ticket', 'label_ticket');
78
79
return $this->belongsToMany(
80
- Label::class,
81
- $table['table'],
82
- $table['columns']['ticket_foreign_id'],
83
- $table['columns']['label_foreign_id'],
84
- );
+ Label::class,
+ $table['table'],
+ $table['columns']['ticket_foreign_id'],
+ $table['columns']['label_foreign_id'],
+ );
85
}
86
87
0 commit comments