Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
18da374e
Commit
18da374e
authored
Nov 26, 2017
by
Viral Solani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vendor publish
parent
7d8472d8
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
902 additions
and
0 deletions
+902
-0
debugbar.php
config/debugbar.php
+201
-0
generators.config.php
config/generators.config.php
+42
-0
trustedproxy.php
config/trustedproxy.php
+71
-0
general.php
resources/lang/vendor/log-viewer/bg/general.php
+7
-0
levels.php
resources/lang/vendor/log-viewer/bg/levels.php
+13
-0
general.php
resources/lang/vendor/log-viewer/et/general.php
+7
-0
levels.php
resources/lang/vendor/log-viewer/et/levels.php
+13
-0
general.php
resources/lang/vendor/log-viewer/ja/general.php
+7
-0
levels.php
resources/lang/vendor/log-viewer/ja/levels.php
+13
-0
button.blade.php
resources/views/vendor/mail/html/button.blade.php
+19
-0
footer.blade.php
resources/views/vendor/mail/html/footer.blade.php
+11
-0
header.blade.php
resources/views/vendor/mail/html/header.blade.php
+7
-0
layout.blade.php
resources/views/vendor/mail/html/layout.blade.php
+54
-0
message.blade.php
resources/views/vendor/mail/html/message.blade.php
+27
-0
panel.blade.php
resources/views/vendor/mail/html/panel.blade.php
+13
-0
promotion.blade.php
resources/views/vendor/mail/html/promotion.blade.php
+7
-0
button.blade.php
resources/views/vendor/mail/html/promotion/button.blade.php
+13
-0
subcopy.blade.php
resources/views/vendor/mail/html/subcopy.blade.php
+7
-0
table.blade.php
resources/views/vendor/mail/html/table.blade.php
+3
-0
default.css
resources/views/vendor/mail/html/themes/default.css
+287
-0
button.blade.php
resources/views/vendor/mail/markdown/button.blade.php
+1
-0
footer.blade.php
resources/views/vendor/mail/markdown/footer.blade.php
+1
-0
header.blade.php
resources/views/vendor/mail/markdown/header.blade.php
+1
-0
layout.blade.php
resources/views/vendor/mail/markdown/layout.blade.php
+9
-0
message.blade.php
resources/views/vendor/mail/markdown/message.blade.php
+27
-0
panel.blade.php
resources/views/vendor/mail/markdown/panel.blade.php
+1
-0
promotion.blade.php
resources/views/vendor/mail/markdown/promotion.blade.php
+1
-0
button.blade.php
...ces/views/vendor/mail/markdown/promotion/button.blade.php
+1
-0
subcopy.blade.php
resources/views/vendor/mail/markdown/subcopy.blade.php
+1
-0
table.blade.php
resources/views/vendor/mail/markdown/table.blade.php
+1
-0
semantic-ui.blade.php
resources/views/vendor/pagination/semantic-ui.blade.php
+36
-0
No files found.
config/debugbar.php
0 → 100644
View file @
18da374e
<?php
return
[
/*
|--------------------------------------------------------------------------
| Debugbar Settings
|--------------------------------------------------------------------------
|
| Debugbar is enabled by default, when debug is set to true in app.php.
| You can override the value by setting enable to true or false instead of null.
|
| You can provide an array of URI's that must be ignored (eg. 'api/*')
|
*/
'enabled'
=>
env
(
'DEBUGBAR_ENABLED'
,
null
),
'except'
=>
[
//
],
/*
|--------------------------------------------------------------------------
| Storage settings
|--------------------------------------------------------------------------
|
| DebugBar stores data for session/ajax requests.
| You can disable this, so the debugbar stores data in headers/session,
| but this can cause problems with large data collectors.
| By default, file storage (in the storage folder) is used. Redis and PDO
| can also be used. For PDO, run the package migrations first.
|
*/
'storage'
=>
[
'enabled'
=>
true
,
'driver'
=>
'file'
,
// redis, file, pdo, custom
'path'
=>
storage_path
(
'debugbar'
),
// For file driver
'connection'
=>
null
,
// Leave null for default connection (Redis/PDO)
'provider'
=>
''
// Instance of StorageInterface for custom driver
],
/*
|--------------------------------------------------------------------------
| Vendors
|--------------------------------------------------------------------------
|
| Vendor files are included by default, but can be set to false.
| This can also be set to 'js' or 'css', to only include javascript or css vendor files.
| Vendor files are for css: font-awesome (including fonts) and highlight.js (css files)
| and for js: jquery and and highlight.js
| So if you want syntax highlighting, set it to true.
| jQuery is set to not conflict with existing jQuery scripts.
|
*/
'include_vendors'
=>
true
,
/*
|--------------------------------------------------------------------------
| Capture Ajax Requests
|--------------------------------------------------------------------------
|
| The Debugbar can capture Ajax requests and display them. If you don't want this (ie. because of errors),
| you can use this option to disable sending the data through the headers.
|
| Optionally, you can also send ServerTiming headers on ajax requests for the Chrome DevTools.
*/
'capture_ajax'
=>
true
,
'add_ajax_timing'
=>
false
,
/*
|--------------------------------------------------------------------------
| Custom Error Handler for Deprecated warnings
|--------------------------------------------------------------------------
|
| When enabled, the Debugbar shows deprecated warnings for Symfony components
| in the Messages tab.
|
*/
'error_handler'
=>
false
,
/*
|--------------------------------------------------------------------------
| Clockwork integration
|--------------------------------------------------------------------------
|
| The Debugbar can emulate the Clockwork headers, so you can use the Chrome
| Extension, without the server-side code. It uses Debugbar collectors instead.
|
*/
'clockwork'
=>
false
,
/*
|--------------------------------------------------------------------------
| DataCollectors
|--------------------------------------------------------------------------
|
| Enable/disable DataCollectors
|
*/
'collectors'
=>
[
'phpinfo'
=>
true
,
// Php version
'messages'
=>
true
,
// Messages
'time'
=>
true
,
// Time Datalogger
'memory'
=>
true
,
// Memory usage
'exceptions'
=>
true
,
// Exception displayer
'log'
=>
true
,
// Logs from Monolog (merged in messages if enabled)
'db'
=>
true
,
// Show database (PDO) queries and bindings
'views'
=>
true
,
// Views with their data
'route'
=>
true
,
// Current route information
'auth'
=>
true
,
// Display Laravel authentication status
'gate'
=>
true
,
// Display Laravel Gate checks
'session'
=>
true
,
// Display session data
'symfony_request'
=>
true
,
// Only one can be enabled..
'mail'
=>
true
,
// Catch mail messages
'laravel'
=>
false
,
// Laravel version and environment
'events'
=>
false
,
// All events fired
'default_request'
=>
false
,
// Regular or special Symfony request logger
'logs'
=>
false
,
// Add the latest log messages
'files'
=>
false
,
// Show the included files
'config'
=>
false
,
// Display config settings
'cache'
=>
false
,
// Display cache events
],
/*
|--------------------------------------------------------------------------
| Extra options
|--------------------------------------------------------------------------
|
| Configure some DataCollectors
|
*/
'options'
=>
[
'auth'
=>
[
'show_name'
=>
true
,
// Also show the users name/email in the debugbar
],
'db'
=>
[
'with_params'
=>
true
,
// Render SQL with the parameters substituted
'backtrace'
=>
true
,
// Use a backtrace to find the origin of the query in your files.
'timeline'
=>
false
,
// Add the queries to the timeline
'explain'
=>
[
// Show EXPLAIN output on queries
'enabled'
=>
false
,
'types'
=>
[
'SELECT'
],
// ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+
],
'hints'
=>
true
,
// Show hints for common mistakes
],
'mail'
=>
[
'full_log'
=>
false
],
'views'
=>
[
'data'
=>
false
,
//Note: Can slow down the application, because the data can be quite large..
],
'route'
=>
[
'label'
=>
true
// show complete route on bar
],
'logs'
=>
[
'file'
=>
null
],
'cache'
=>
[
'values'
=>
true
// collect cache values
],
],
/*
|--------------------------------------------------------------------------
| Inject Debugbar in Response
|--------------------------------------------------------------------------
|
| Usually, the debugbar is added just before </body>, by listening to the
| Response after the App is done. If you disable this, you have to add them
| in your template yourself. See http://phpdebugbar.com/docs/rendering.html
|
*/
'inject'
=>
true
,
/*
|--------------------------------------------------------------------------
| DebugBar route prefix
|--------------------------------------------------------------------------
|
| Sometimes you want to set route prefix to be used by DebugBar to load
| its resources from. Usually the need comes from misconfigured web server or
| from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97
|
*/
'route_prefix'
=>
'_debugbar'
,
/*
|--------------------------------------------------------------------------
| DebugBar route domain
|--------------------------------------------------------------------------
|
| By default DebugBar route served from the same domain that request served.
| To override default domain, specify it as a non-empty value.
*/
'route_domain'
=>
null
,
];
config/generators.config.php
0 → 100644
View file @
18da374e
<?php
return
[
/*
|--------------------------------------------------------------------------
| Where the templates for the generators are stored...
|--------------------------------------------------------------------------
|
*/
'model_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/model.txt'
),
'scaffold_model_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/scaffolding/model.txt'
),
'controller_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/controller.txt'
),
'scaffold_controller_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/scaffolding/controller.txt'
),
'migration_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/migration.txt'
),
'seed_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/seed.txt'
),
'view_template_path'
=>
base_path
(
'vendor/xethron/laravel-4-generators/src/Way/Generators/templates/view.txt'
),
/*
|--------------------------------------------------------------------------
| Where the generated files will be saved...
|--------------------------------------------------------------------------
|
*/
'model_target_path'
=>
app_path
(),
'controller_target_path'
=>
app_path
(
'Http/Controllers'
),
'migration_target_path'
=>
base_path
(
'database/migrations'
),
'seed_target_path'
=>
base_path
(
'database/seeds'
),
'view_target_path'
=>
base_path
(
'resources/views'
)
];
config/trustedproxy.php
0 → 100644
View file @
18da374e
<?php
return
[
/*
* Set trusted proxy IP addresses.
*
* Both IPv4 and IPv6 addresses are
* supported, along with CIDR notation.
*
* The "*" character is syntactic sugar
* within TrustedProxy to trust any proxy
* that connects directly to your server,
* a requirement when you cannot know the address
* of your proxy (e.g. if using Rackspace balancers).
*
* The "**" character is syntactic sugar within
* TrustedProxy to trust not just any proxy that
* connects directly to your server, but also
* proxies that connect to those proxies, and all
* the way back until you reach the original source
* IP. It will mean that $request->getClientIp()
* always gets the originating client IP, no matter
* how many proxies that client's request has
* subsequently passed through.
*/
'proxies'
=>
[
'192.168.1.10'
,
],
/*
* Or, to trust all proxies that connect
* directly to your server, uncomment this:
*/
# 'proxies' => '*',
/*
* Or, to trust ALL proxies, including those that
* are in a chain of forwarding, uncomment this:
*/
# 'proxies' => '**',
/*
* Default Header Names
*
* Change these if the proxy does
* not send the default header names.
*
* Note that headers such as X-Forwarded-For
* are transformed to HTTP_X_FORWARDED_FOR format.
*
* The following are Symfony defaults, found in
* \Symfony\Component\HttpFoundation\Request::$trustedHeaders
*
* You may optionally set headers to 'null' here if you'd like
* for them to be considered untrusted instead. Ex:
*
* Illuminate\Http\Request::HEADER_CLIENT_HOST => null,
*
* WARNING: If you're using AWS Elastic Load Balancing or Heroku,
* the FORWARDED and X_FORWARDED_HOST headers should be set to null
* as they are currently unsupported there.
*/
'headers'
=>
[
(
defined
(
'Illuminate\Http\Request::HEADER_FORWARDED'
)
?
Illuminate\Http\Request
::
HEADER_FORWARDED
:
'forwarded'
)
=>
'FORWARDED'
,
Illuminate\Http\Request
::
HEADER_CLIENT_IP
=>
'X_FORWARDED_FOR'
,
Illuminate\Http\Request
::
HEADER_CLIENT_HOST
=>
'X_FORWARDED_HOST'
,
Illuminate\Http\Request
::
HEADER_CLIENT_PROTO
=>
'X_FORWARDED_PROTO'
,
Illuminate\Http\Request
::
HEADER_CLIENT_PORT
=>
'X_FORWARDED_PORT'
,
]
];
resources/lang/vendor/log-viewer/bg/general.php
0 → 100644
View file @
18da374e
<?php
return
[
'all'
=>
'Всички'
,
'date'
=>
'Дата'
,
'empty-logs'
=>
'Не са намерени логове!'
,
];
resources/lang/vendor/log-viewer/bg/levels.php
0 → 100644
View file @
18da374e
<?php
return
[
'all'
=>
'Всички'
,
'emergency'
=>
'Emergency'
,
'alert'
=>
'Alert'
,
'critical'
=>
'Critical'
,
'error'
=>
'Error'
,
'warning'
=>
'Warning'
,
'notice'
=>
'Notice'
,
'info'
=>
'Info'
,
'debug'
=>
'Debug'
,
];
resources/lang/vendor/log-viewer/et/general.php
0 → 100644
View file @
18da374e
<?php
return
[
'all'
=>
'Kõik'
,
'date'
=>
'Kuupäev'
,
'empty-logs'
=>
'Logide nimekiri on tühi!'
,
];
resources/lang/vendor/log-viewer/et/levels.php
0 → 100644
View file @
18da374e
<?php
return
[
'all'
=>
'Kõik'
,
'emergency'
=>
'Erakorraline'
,
'alert'
=>
'Häire'
,
'critical'
=>
'Kriitiline'
,
'error'
=>
'Viga'
,
'warning'
=>
'Hoiatus'
,
'notice'
=>
'Teade'
,
'info'
=>
'Info'
,
'debug'
=>
'Silumine'
,
];
resources/lang/vendor/log-viewer/ja/general.php
0 → 100644
View file @
18da374e
<?php
return
[
'all'
=>
'すべて'
,
'date'
=>
'日付'
,
'empty-logs'
=>
'ログリストが空です!'
,
];
resources/lang/vendor/log-viewer/ja/levels.php
0 → 100644
View file @
18da374e
<?php
return
[
'all'
=>
'すべて'
,
'emergency'
=>
'緊急'
,
'alert'
=>
'警戒'
,
'critical'
=>
'致命的'
,
'error'
=>
'エラー'
,
'warning'
=>
'警告'
,
'notice'
=>
'通知'
,
'info'
=>
'情報'
,
'debug'
=>
'デバッグ'
,
];
resources/views/vendor/mail/html/button.blade.php
0 → 100644
View file @
18da374e
<table
class=
"action"
align=
"center"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
align=
"center"
>
<table
width=
"100%"
border=
"0"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
align=
"center"
>
<table
border=
"0"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td>
<a
href=
"{{ $url }}"
class=
"button button-{{ $color or 'blue' }}"
target=
"_blank"
>
{{ $slot }}
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
resources/views/vendor/mail/html/footer.blade.php
0 → 100644
View file @
18da374e
<tr>
<td>
<table
class=
"footer"
align=
"center"
width=
"570"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
class=
"content-cell"
align=
"center"
>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
</td>
</tr>
resources/views/vendor/mail/html/header.blade.php
0 → 100644
View file @
18da374e
<tr>
<td
class=
"header"
>
<a
href=
"{{ $url }}"
>
{{ $slot }}
</a>
</td>
</tr>
resources/views/vendor/mail/html/layout.blade.php
0 → 100644
View file @
18da374e
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
/>
</head>
<body>
<style>
@media
only
screen
and
(
max-width
:
600px
)
{
.inner-body
{
width
:
100%
!important
;
}
.footer
{
width
:
100%
!important
;
}
}
@media
only
screen
and
(
max-width
:
500px
)
{
.button
{
width
:
100%
!important
;
}
}
</style>
<table
class=
"wrapper"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
align=
"center"
>
<table
class=
"content"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
{{ $header or '' }}
<!-- Email Body -->
<tr>
<td
class=
"body"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<table
class=
"inner-body"
align=
"center"
width=
"570"
cellpadding=
"0"
cellspacing=
"0"
>
<!-- Body content -->
<tr>
<td
class=
"content-cell"
>
{{ Illuminate\Mail\Markdown::parse($slot) }}
{{ $subcopy or '' }}
</td>
</tr>
</table>
</td>
</tr>
{{ $footer or '' }}
</table>
</td>
</tr>
</table>
</body>
</html>
resources/views/vendor/mail/html/message.blade.php
0 → 100644
View file @
18da374e
@
component
(
'mail::layout'
)
{{
--
Header
--
}}
@
slot
(
'header'
)
@
component
(
'mail::header'
,
[
'url'
=>
config
(
'app.url'
)])
{{
config
(
'app.name'
)
}}
@
endcomponent
@
endslot
{{
--
Body
--
}}
{{
$slot
}}
{{
--
Subcopy
--
}}
@
isset
(
$subcopy
)
@
slot
(
'subcopy'
)
@
component
(
'mail::subcopy'
)
{{
$subcopy
}}
@
endcomponent
@
endslot
@
endisset
{{
--
Footer
--
}}
@
slot
(
'footer'
)
@
component
(
'mail::footer'
)
&
copy
;
{{
date
(
'Y'
)
}}
{{
config
(
'app.name'
)
}}
.
All
rights
reserved
.
@
endcomponent
@
endslot
@
endcomponent
resources/views/vendor/mail/html/panel.blade.php
0 → 100644
View file @
18da374e
<table
class=
"panel"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
class=
"panel-content"
>
<table
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
class=
"panel-item"
>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
</td>
</tr>
</table>
resources/views/vendor/mail/html/promotion.blade.php
0 → 100644
View file @
18da374e
<table
class=
"promotion"
align=
"center"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
align=
"center"
>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
resources/views/vendor/mail/html/promotion/button.blade.php
0 → 100644
View file @
18da374e
<table
width=
"100%"
border=
"0"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td
align=
"center"
>
<table
border=
"0"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td>
<a
href=
"{{ $url }}"
class=
"button button-green"
target=
"_blank"
>
{{ $slot }}
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
resources/views/vendor/mail/html/subcopy.blade.php
0 → 100644
View file @
18da374e
<table
class=
"subcopy"
width=
"100%"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
resources/views/vendor/mail/html/table.blade.php
0 → 100644
View file @
18da374e
<div
class=
"table"
>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</div>
resources/views/vendor/mail/html/themes/default.css
0 → 100644
View file @
18da374e
/* Base */
body
,
body
*
:not
(
html
)
:not
(
style
)
:not
(
br
)
:not
(
tr
)
:not
(
code
)
{
font-family
:
Avenir
,
Helvetica
,
sans-serif
;
box-sizing
:
border-box
;
}
body
{
background-color
:
#f5f8fa
;
color
:
#74787E
;
height
:
100%
;
hyphens
:
auto
;
line-height
:
1.4
;
margin
:
0
;
-moz-hyphens
:
auto
;
-ms-word-break
:
break-all
;
width
:
100%
!important
;
-webkit-hyphens
:
auto
;
-webkit-text-size-adjust
:
none
;
word-break
:
break-all
;
word-break
:
break-word
;
}
p
,
ul
,
ol
,
blockquote
{
line-height
:
1.4
;
text-align
:
left
;
}
a
{
color
:
#3869D4
;
}
a
img
{
border
:
none
;
}
/* Typography */
h1
{
color
:
#2F3133
;
font-size
:
19px
;
font-weight
:
bold
;
margin-top
:
0
;
text-align
:
left
;
}
h2
{
color
:
#2F3133
;
font-size
:
16px
;
font-weight
:
bold
;
margin-top
:
0
;
text-align
:
left
;
}
h3
{
color
:
#2F3133
;
font-size
:
14px
;
font-weight
:
bold
;
margin-top
:
0
;
text-align
:
left
;
}
p
{
color
:
#74787E
;
font-size
:
16px
;
line-height
:
1.5em
;
margin-top
:
0
;
text-align
:
left
;
}
p
.sub
{
font-size
:
12px
;
}
img
{
max-width
:
100%
;
}
/* Layout */
.wrapper
{
background-color
:
#f5f8fa
;
margin
:
0
;
padding
:
0
;
width
:
100%
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
100%
;
}
.content
{
margin
:
0
;
padding
:
0
;
width
:
100%
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
100%
;
}
/* Header */
.header
{
padding
:
25px
0
;
text-align
:
center
;
}
.header
a
{
color
:
#bbbfc3
;
font-size
:
19px
;
font-weight
:
bold
;
text-decoration
:
none
;
text-shadow
:
0
1px
0
white
;
}
/* Body */
.body
{
background-color
:
#FFFFFF
;
border-bottom
:
1px
solid
#EDEFF2
;
border-top
:
1px
solid
#EDEFF2
;
margin
:
0
;
padding
:
0
;
width
:
100%
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
100%
;
}
.inner-body
{
background-color
:
#FFFFFF
;
margin
:
0
auto
;
padding
:
0
;
width
:
570px
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
570px
;
}
/* Subcopy */
.subcopy
{
border-top
:
1px
solid
#EDEFF2
;
margin-top
:
25px
;
padding-top
:
25px
;
}
.subcopy
p
{
font-size
:
12px
;
}
/* Footer */
.footer
{
margin
:
0
auto
;
padding
:
0
;
text-align
:
center
;
width
:
570px
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
570px
;
}
.footer
p
{
color
:
#AEAEAE
;
font-size
:
12px
;
text-align
:
center
;
}
/* Tables */
.table
table
{
margin
:
30px
auto
;
width
:
100%
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
100%
;
}
.table
th
{
border-bottom
:
1px
solid
#EDEFF2
;
padding-bottom
:
8px
;
margin
:
0
;
}
.table
td
{
color
:
#74787E
;
font-size
:
15px
;
line-height
:
18px
;
padding
:
10px
0
;
margin
:
0
;
}
.content-cell
{
padding
:
35px
;
}
/* Buttons */
.action
{
margin
:
30px
auto
;
padding
:
0
;
text-align
:
center
;
width
:
100%
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
100%
;
}
.button
{
border-radius
:
3px
;
box-shadow
:
0
2px
3px
rgba
(
0
,
0
,
0
,
0.16
);
color
:
#FFF
;
display
:
inline-block
;
text-decoration
:
none
;
-webkit-text-size-adjust
:
none
;
}
.button-blue
{
background-color
:
#3097D1
;
border-top
:
10px
solid
#3097D1
;
border-right
:
18px
solid
#3097D1
;
border-bottom
:
10px
solid
#3097D1
;
border-left
:
18px
solid
#3097D1
;
}
.button-green
{
background-color
:
#2ab27b
;
border-top
:
10px
solid
#2ab27b
;
border-right
:
18px
solid
#2ab27b
;
border-bottom
:
10px
solid
#2ab27b
;
border-left
:
18px
solid
#2ab27b
;
}
.button-red
{
background-color
:
#bf5329
;
border-top
:
10px
solid
#bf5329
;
border-right
:
18px
solid
#bf5329
;
border-bottom
:
10px
solid
#bf5329
;
border-left
:
18px
solid
#bf5329
;
}
/* Panels */
.panel
{
margin
:
0
0
21px
;
}
.panel-content
{
background-color
:
#EDEFF2
;
padding
:
16px
;
}
.panel-item
{
padding
:
0
;
}
.panel-item
p
:last-of-type
{
margin-bottom
:
0
;
padding-bottom
:
0
;
}
/* Promotions */
.promotion
{
background-color
:
#FFFFFF
;
border
:
2px
dashed
#9BA2AB
;
margin
:
0
;
margin-bottom
:
25px
;
margin-top
:
25px
;
padding
:
24px
;
width
:
100%
;
-premailer-cellpadding
:
0
;
-premailer-cellspacing
:
0
;
-premailer-width
:
100%
;
}
.promotion
h1
{
text-align
:
center
;
}
.promotion
p
{
font-size
:
15px
;
text-align
:
center
;
}
resources/views/vendor/mail/markdown/button.blade.php
0 → 100644
View file @
18da374e
{{
$slot
}}
:
{{
$url
}}
resources/views/vendor/mail/markdown/footer.blade.php
0 → 100644
View file @
18da374e
{{
$slot
}}
resources/views/vendor/mail/markdown/header.blade.php
0 → 100644
View file @
18da374e
[{{
$slot
}}]({{
$url
}})
resources/views/vendor/mail/markdown/layout.blade.php
0 → 100644
View file @
18da374e
{
!!
strip_tags
(
$header
)
!!
}
{
!!
strip_tags
(
$slot
)
!!
}
@
isset
(
$subcopy
)
{
!!
strip_tags
(
$subcopy
)
!!
}
@
endisset
{
!!
strip_tags
(
$footer
)
!!
}
resources/views/vendor/mail/markdown/message.blade.php
0 → 100644
View file @
18da374e
@
component
(
'mail::layout'
)
{{
--
Header
--
}}
@
slot
(
'header'
)
@
component
(
'mail::header'
,
[
'url'
=>
config
(
'app.url'
)])
{{
config
(
'app.name'
)
}}
@
endcomponent
@
endslot
{{
--
Body
--
}}
{{
$slot
}}
{{
--
Subcopy
--
}}
@
isset
(
$subcopy
)
@
slot
(
'subcopy'
)
@
component
(
'mail::subcopy'
)
{{
$subcopy
}}
@
endcomponent
@
endslot
@
endisset
{{
--
Footer
--
}}
@
slot
(
'footer'
)
@
component
(
'mail::footer'
)
©
{{
date
(
'Y'
)
}}
{{
config
(
'app.name'
)
}}
.
All
rights
reserved
.
@
endcomponent
@
endslot
@
endcomponent
resources/views/vendor/mail/markdown/panel.blade.php
0 → 100644
View file @
18da374e
{{
$slot
}}
resources/views/vendor/mail/markdown/promotion.blade.php
0 → 100644
View file @
18da374e
{{
$slot
}}
resources/views/vendor/mail/markdown/promotion/button.blade.php
0 → 100644
View file @
18da374e
[{{
$slot
}}]({{
$url
}})
resources/views/vendor/mail/markdown/subcopy.blade.php
0 → 100644
View file @
18da374e
{{
$slot
}}
resources/views/vendor/mail/markdown/table.blade.php
0 → 100644
View file @
18da374e
{{
$slot
}}
resources/views/vendor/pagination/semantic-ui.blade.php
0 → 100644
View file @
18da374e
@
if
(
$paginator
->
hasPages
())
<
div
class
="
ui
pagination
menu
">
{{-- Previous Page Link --}}
@if (
$paginator->onFirstPage
())
<a class="
icon
item
disabled
"> <i class="
left
chevron
icon
"></i> </a>
@else
<a class="
icon
item
" href="
{{
$paginator
->
previousPageUrl
()
}}
" rel="
prev
"> <i class="
left
chevron
icon
"></i> </a>
@endif
{{-- Pagination Elements --}}
@foreach (
$elements
as
$element
)
{{-- "
Three
Dots
" Separator --}}
@if (is_string(
$element
))
<a class="
icon
item
disabled
">{{
$element
}}</a>
@endif
{{-- Array Of Links --}}
@if (is_array(
$element
))
@foreach (
$element
as
$page
=>
$url
)
@if (
$page
==
$paginator->currentPage
())
<a class="
item
active
" href="
{{
$url
}}
">{{
$page
}}</a>
@else
<a class="
item
" href="
{{
$url
}}
">{{
$page
}}</a>
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if (
$paginator->hasMorePages
())
<a class="
icon
item
" href="
{{
$paginator
->
nextPageUrl
()
}}
" rel="
next
"> <i class="
right
chevron
icon
"></i> </a>
@else
<a class="
icon
item
disabled
"> <i class="
right
chevron
icon
"></i> </a>
@endif
</div>
@endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment