Major updates
This commit is contained in:
.env.example.ftpconfig.gitattributes.gitignore.htaccess.bakartisanwallboard.blade.phpwinnerlist.blade.phpwinners.blade.phpwinnersbyitem.blade.phpwinnertotal.blade.phpwinnertotalform.blade.phpwinningbidderlist.blade.phprobots.txt
.well-known/acme-challenge
.htaccess8v0Cf3ylQLFNgcegxFMx8cj0JdeNqHHpy4CeD6ysEBkHJ-kQUwVEpxQRx-PbdQh9amh551r1qKYnYz7BSaCsUUjP9MbSoieT1lkynjYO_CmgQaDNo1e3YltW3B548xvKwkb-Nl5gH-KxgtBxxfHeybJoxm3LF5Hgz3UZg7vCX_aQpjzNgqREZNYL9CqNsQAk2fTVvkafB81tXUyR3EhfG6k
"\\"app
Console
Exceptions
Http
Providers
AppServiceProvider.phpAuthServiceProvider.phpBroadcastServiceProvider.phpEventServiceProvider.phpRouteServiceProvider.php
User.phphelpers.phpbootstrap
composer.jsoncomposer.json.bakcomposer.json.rlbakcomposer.lockconfig
app.phpauth.phpbroadcasting.phpcache.phpdatabase.phpdompdf.phpfilesystems.phpmail.phppdf.phpqueue.phpservices.phpsession.phpsnappy.phptcpdf.phptinker.phpview.php
database
error_logindex.htmlpackage.jsonphpunit.xmlpublic
readme.mdresources
assets
lang
views
auth
bidderlist.blade.phpbidders.blade.phpcheckout.blade.phpcheckout_complete.blade.phpcheckout_complete_list.blade.phpcheckout_select_form.blade.phpeditwinners.blade.phpfinaltally.blade.phphome.blade.phpitemlist.blade.phpitems.blade.phplayouts
receiptpdf.blade.phpreceiptpdf2.blade.phpreprint_receipt_form.blade.phpvendor
mail
html
button.blade.phpfooter.blade.phpheader.blade.phplayout.blade.phpmessage.blade.phppanel.blade.phppromotion.blade.php
promotion
subcopy.blade.phptable.blade.phpthemes
markdown
notifications
pagination
routes
server.phpstats
.htaccess.htaccess.lockctry_usage_201804.pngctry_usage_201805.pngctry_usage_201806.pngdaily_usage_201804.pngdaily_usage_201805.pngdaily_usage_201806.pngdns_cache.dbhourly_usage_201804.pnghourly_usage_201805.pnghourly_usage_201806.pngindex.htmlusage.pngusage_201804.htmlusage_201805.htmlusage_201806.htmlwebalizer.currentwebalizer.hist
storage
app
framework
logs
tests
webpack.mix.js
58
resources/views/vendor/notifications/email.blade.php
vendored
Normal file
58
resources/views/vendor/notifications/email.blade.php
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
@component('mail::message')
|
||||
{{-- Greeting --}}
|
||||
@if (! empty($greeting))
|
||||
# {{ $greeting }}
|
||||
@else
|
||||
@if ($level == 'error')
|
||||
# Whoops!
|
||||
@else
|
||||
# Hello!
|
||||
@endif
|
||||
@endif
|
||||
|
||||
{{-- Intro Lines --}}
|
||||
@foreach ($introLines as $line)
|
||||
{{ $line }}
|
||||
|
||||
@endforeach
|
||||
|
||||
{{-- Action Button --}}
|
||||
@isset($actionText)
|
||||
<?php
|
||||
switch ($level) {
|
||||
case 'success':
|
||||
$color = 'green';
|
||||
break;
|
||||
case 'error':
|
||||
$color = 'red';
|
||||
break;
|
||||
default:
|
||||
$color = 'blue';
|
||||
}
|
||||
?>
|
||||
@component('mail::button', ['url' => $actionUrl, 'color' => $color])
|
||||
{{ $actionText }}
|
||||
@endcomponent
|
||||
@endisset
|
||||
|
||||
{{-- Outro Lines --}}
|
||||
@foreach ($outroLines as $line)
|
||||
{{ $line }}
|
||||
|
||||
@endforeach
|
||||
|
||||
{{-- Salutation --}}
|
||||
@if (! empty($salutation))
|
||||
{{ $salutation }}
|
||||
@else
|
||||
Regards,<br>{{ config('app.name') }}
|
||||
@endif
|
||||
|
||||
{{-- Subcopy --}}
|
||||
@isset($actionText)
|
||||
@component('mail::subcopy')
|
||||
If you’re having trouble clicking the "{{ $actionText }}" button, copy and paste the URL below
|
||||
into your web browser: [{{ $actionUrl }}]({{ $actionUrl }})
|
||||
@endcomponent
|
||||
@endisset
|
||||
@endcomponent
|
Reference in New Issue
Block a user