mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-29 06:51:30 -05:00
Merge branch 'master' into Code-Quality
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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%;">
|
||||
|
||||
Reference in New Issue
Block a user