23-01-2026
This commit is contained in:
parent
a939cd51ef
commit
a8b395e20d
248 changed files with 29342 additions and 4805 deletions
|
|
@ -1,16 +1,11 @@
|
|||
<?php
|
||||
|
||||
namespace App\Mail;
|
||||
|
||||
use Storage;
|
||||
use App\User;
|
||||
use App\Services\Credit;
|
||||
use App\Services\Invoice;
|
||||
use App\Models\UserCredit;
|
||||
use App\Models\ShoppingOrder;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Mail\Mailable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
|
||||
class MailUserLevelUpdate extends Mailable
|
||||
{
|
||||
|
|
@ -27,15 +22,18 @@ class MailUserLevelUpdate extends Mailable
|
|||
|
||||
$this->subject = __('email.update_level_title');
|
||||
}
|
||||
|
||||
|
||||
public function build()
|
||||
{
|
||||
$title = __('email.update_level_title');
|
||||
$copy1line = __('email.update_level_copy1line', ['tp'=>$this->team_points, 'to'=>$this->update_to]);
|
||||
$title = __('email.update_level_title');
|
||||
$copy1line = __('email.update_level_copy1line', ['tp' => $this->team_points, 'to' => $this->update_to]);
|
||||
$copy2line = __('email.update_level_copy2line');
|
||||
$copy3line = __('email.update_level_copy3line');
|
||||
|
||||
return $this->view('emails.blank')->with([
|
||||
'title' => $title,
|
||||
'copy1line' => $copy1line,
|
||||
'copy1line' => $copy1line,
|
||||
'content' => $copy2line . '<br><br>' . $copy3line,
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue