generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from marcogermani87/main
Multiple enhanchment (Table, Update and resend, translations and others)
- Loading branch information
Showing
21 changed files
with
313 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace RickDBCN\FilamentEmail\Database\Factories; | ||
|
||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
use RickDBCN\FilamentEmail\Tests\Models\User; | ||
|
||
class UserFactory extends Factory | ||
{ | ||
protected $model = User::class; | ||
|
||
public function definition(): array | ||
{ | ||
return [ | ||
'name' => $this->faker->name, | ||
'email' => $this->faker->unique()->safeEmail, | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
return [ | ||
'created_at' => 'Created at', | ||
'sent_at' => 'Sent at', | ||
'html' => 'HTML', | ||
'text' => 'Text', | ||
'raw' => 'Raw', | ||
'debug_info' => 'Debug info', | ||
'cc' => 'CC', | ||
'to' => 'To', | ||
'from' => 'From', | ||
'header' => 'Headers', | ||
'resend_email_heading' => 'Resend e-mail', | ||
'resend_email_description' => 'Are you sure you want to resend this e-mail?', | ||
'resend_email_success' => 'The e-mail was sent with success', | ||
'resend_email_error' => 'Unable to send e-mail, internal error', | ||
'email_log' => 'E-mail Log', | ||
'subject' => 'Subject', | ||
'from_filter' => 'From', | ||
'to_filter' => 'To', | ||
'navigation_label' => 'E-mail Log', | ||
'navigation_group' => 'Admin', | ||
'bcc' => 'BCC', | ||
'insert_multiple_email_placelholder' => 'Insert one or more e-mail', | ||
'update_and_resend_email_heading' => 'Update and resend e-mail', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
return [ | ||
'created_at' => 'Creato il', | ||
'sent_at' => 'Data di invio', | ||
'html' => 'HTML', | ||
'text' => 'Testo', | ||
'raw' => 'Raw', | ||
'debug_info' => 'Info di debug', | ||
'cc' => 'CC', | ||
'to' => 'A', | ||
'from' => 'Da', | ||
'header' => 'Intestazione', | ||
'resend_email_heading' => 'Re-invia e-mail', | ||
'resend_email_description' => 'Sei sicuro di voler re-inviare questa e-mail?', | ||
'resend_email_success' => "L'e-mail è stata inviata con successo", | ||
'resend_email_error' => "Impossibile inviare l'email, errore interno", | ||
'email_log' => 'E-mail Log', | ||
'subject' => 'Oggetto', | ||
'from_filter' => 'Dal', | ||
'to_filter' => 'Al', | ||
'navigation_label' => 'E-mail Log', | ||
'navigation_group' => 'Admin', | ||
'bcc' => 'BCC', | ||
'insert_multiple_email_placelholder' => 'Inserisci una o più e-mail', | ||
'update_and_resend_email_heading' => 'Modifica and re-invia e-mail', | ||
]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.