12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace App\Mail;
- use App\Shop\Addresses\Transformations\AddressTransformable;
- use App\Shop\Orders\Order;
- use Illuminate\Bus\Queueable;
- use Illuminate\Mail\Mailable;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Contracts\Queue\ShouldQueue;
- class sendEmailNotificationToAdminMailable extends Mailable
- {
- use Queueable, SerializesModels, AddressTransformable;
- public $order;
- /**
- * Create a new message instance.
- * @param Order $order
- */
- public function __construct(Order $order)
- {
- $this->order = $order;
- }
- /**
- * Build the message.
- *
- * @return $this
- */
- public function build()
- {
- $data = [
- 'order' => $this->order,
- 'products' => $this->order->products,
- 'customer' => $this->order->customer,
- 'courier' => $this->order->courier,
- 'address' => $this->order->address,
- 'status' => $this->order->orderStatus,
- 'payment' => $this->order->paymentMethod
- ];
- return $this->view('emails.admin.OrderNotificationEmail', $data);
- }
- }
|