add shipping rules

This commit is contained in:
Ludovic CANDELLIER
2023-07-16 14:45:42 +02:00
parent 72a7b270f9
commit 0879b0abf0
459 changed files with 6219 additions and 5416 deletions

View File

@@ -13,8 +13,7 @@ class NewUser extends Notification
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
*
* @param mixed $notifiable
* @return string[]
*/
public function via($notifiable)
@@ -25,8 +24,7 @@ class NewUser extends Notification
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
@@ -40,7 +38,7 @@ class NewUser extends Notification
->line(
__(
'notifications.newuser.intro', [
'name' => $currentUser->first_name.' '.$currentUser->last_name,
'name' => $currentUser->first_name.' '.$currentUser->last_name,
]
)
)
@@ -51,7 +49,7 @@ class NewUser extends Notification
->salutation(
__(
'notifications.salutation', [
'name' => $currentUser->first_name.' '.$currentUser->last_name,
'name' => $currentUser->first_name.' '.$currentUser->last_name,
]
)
)
@@ -61,8 +59,7 @@ class NewUser extends Notification
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)

View File

@@ -9,8 +9,7 @@ class ResetPassword extends \Illuminate\Auth\Notifications\ResetPassword
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
/*