Merge branch 'master' into Code-Quality

This commit is contained in:
HDVinnie
2021-01-02 16:59:30 -05:00
3 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -55,8 +55,8 @@ class ProcessMassPM implements ShouldQueue
public function handle()
{
$privateMessage = new PrivateMessage();
$privateMessage->sender_id = $this->sender_id;
$privateMessage->receiver_id = $this->receiver_id;
$privateMessage->sender_id = $this->senderId;
$privateMessage->receiver_id = $this->receiverId;
$privateMessage->subject = $this->subject;
$privateMessage->message = $this->message;
$privateMessage->save();
+2 -2
View File
@@ -307,13 +307,13 @@
<span class="text-bold text-pink"> {{ substr($t->meta->first_air_date ?? '', 0, 4) }}</span>
@endif
</h3>
@if ($t->meta->genres->isNotEmpty())
@if (isset($t->meta->genres))
@foreach ($t->meta->genres as $genre)
<span class="genre-label">{{ $genre->name }}</span>
@endforeach
@endif
<p class="description_plot" style="width: 100%;">
{{ $t->meta->plot }}
{{ $t->meta->plot ?? '' }}
</p>
<div class="card_holder" style="width: 100%;" ;>
<hr style="padding: 0 !important; margin: 5px 0 !important; width: 100%;">
@@ -49,11 +49,13 @@
<span class="text-bold text-pink"> {{ substr($t->meta->first_air_date ?? '', 0, 4) }}</span>
@endif
</h3>
@if (isset($t->meta->genres))
@foreach ($t->meta->genres as $genre)
<span class="genre-label">{{ $genre->name }}</span>
@endforeach
@endif
<p class="description_plot" style="width: 100%;">
{{ $t->meta->plot }}
{{ $t->meta->plot ?? '' }}
</p>
<div class="card_holder" style="width: 100%;" ;>
<hr style="padding: 0 !important; margin: 5px 0 !important; width: 100%;">