Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #202 from Qoraiche/ReeceM-patch-3.x
Browse files Browse the repository at this point in the history
Update mailables.blade.php
  • Loading branch information
ReeceM authored Feb 15, 2022
2 parents 3cd110a + ea6dd74 commit b886a16
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,3 +276,8 @@ New Structure:
### Fixes

- Correct custom Mailable directory usage from config, see PR #190 @Bhagyrajaj

## Version 3.5.3

### Fixes
- Syntax error in the `mailables.blade.php` file. #199, #200
2 changes: 1 addition & 1 deletion resources/views/sections/mailables.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<td class="pr-0">
{{ $mailable['name'] }}
</td>
<td class="text-muted" title="{{ $mailable['namespace'] }}">{{ config('maileclipse.display_as_subject') ? $mailable['subject'] ? $mailable['namespace'] }}</td>
<td class="text-muted" title="{{ $mailable['namespace'] }}">{{ config('maileclipse.display_as_subject') ? $mailable['subject'] : $mailable['namespace'] }}</td>

<td class="table-fit"><span>{{ (\Carbon\Carbon::createFromTimeStamp($mailable['modified']))->diffForHumans() }}</span></td>

Expand Down
2 changes: 1 addition & 1 deletion src/MailEclipse.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class MailEclipse
{
public const VIEW_NAMESPACE = 'maileclipse';

public const VERSION = '3.5.2';
public const VERSION = '3.5.3';

/**
* Default type examples for being passed to reflected classes.
Expand Down

0 comments on commit b886a16

Please sign in to comment.