├── public
├── favicon.ico
├── vendor
│ └── beautymail
│ │ ├── .gitkeep
│ │ └── assets
│ │ └── images
│ │ ├── ark
│ │ ├── fb.png
│ │ ├── logo.png
│ │ └── twitter.png
│ │ ├── sunny
│ │ ├── fb.png
│ │ ├── logo.png
│ │ └── twitter.png
│ │ ├── minty
│ │ └── logo.png
│ │ └── widgets
│ │ ├── flickr.gif
│ │ ├── logo.png
│ │ ├── spacer.gif
│ │ ├── facebook.gif
│ │ └── twitter.gif
├── robots.txt
├── img
│ └── logo.png
├── .htaccess
├── index.php
└── css
│ └── app.css
├── database
├── .gitignore
├── seeds
│ └── DatabaseSeeder.php
├── factories
│ └── ModelFactory.php
└── migrations
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ └── 2014_10_12_000000_create_users_table.php
├── bootstrap
├── cache
│ └── .gitignore
├── autoload.php
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── cache
│ └── .gitignore
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── .gitattributes
├── .gitignore
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── CreatesApplication.php
└── Feature
│ └── ExampleTest.php
├── resources
├── assets
│ ├── sass
│ │ ├── app.scss
│ │ └── _variables.scss
│ └── js
│ │ ├── components
│ │ └── Example.vue
│ │ ├── app.js
│ │ └── bootstrap.js
├── lang
│ └── en
│ │ ├── pagination.php
│ │ ├── auth.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── welcome.blade.php
│ └── emails
│ └── welcome.blade.php
├── app
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── TrimStrings.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ ├── IndexController.php
│ │ └── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ └── RegisterController.php
│ └── Kernel.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── User.php
├── Console
│ └── Kernel.php
└── Exceptions
│ └── Handler.php
├── routes
├── channels.php
├── api.php
├── web.php
└── console.php
├── webpack.mix.js
├── server.php
├── .env.example
├── README.md
├── config
├── beautymail.php
├── view.php
├── services.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── cache.php
├── auth.php
├── database.php
├── mail.php
├── session.php
└── app.php
├── package.json
├── phpunit.xml
├── composer.json
└── artisan
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/public/vendor/beautymail/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/public/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/img/logo.png
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/ark/fb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/ark/fb.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/ark/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/ark/logo.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/sunny/fb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/sunny/fb.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/ark/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/ark/twitter.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/minty/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/minty/logo.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/sunny/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/sunny/logo.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/sunny/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/sunny/twitter.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/widgets/flickr.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/widgets/flickr.gif
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/widgets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/widgets/logo.png
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/widgets/spacer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/widgets/spacer.gif
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/widgets/facebook.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/widgets/facebook.gif
--------------------------------------------------------------------------------
/public/vendor/beautymail/assets/images/widgets/twitter.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/avinashn/sending_html_mails_in_laravel/HEAD/public/vendor/beautymail/assets/images/widgets/twitter.gif
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/hot
3 | /public/storage
4 | /storage/*.key
5 | /vendor
6 | /.idea
7 | /.vagrant
8 | Homestead.json
9 | Homestead.yaml
10 | npm-debug.log
11 | yarn-error.log
12 | .env
13 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
1 | make(Kernel::class)->bootstrap();
19 |
20 | return $app;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | get('/');
20 |
21 | $response->assertStatus(200);
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/routes/channels.php:
--------------------------------------------------------------------------------
1 | id === (int) $id;
16 | });
17 |
--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
1 | get('/user', function (Request $request) {
17 | return $request->user();
18 | });
19 |
--------------------------------------------------------------------------------
/webpack.mix.js:
--------------------------------------------------------------------------------
1 | let mix = require('laravel-mix');
2 |
3 | /*
4 | |--------------------------------------------------------------------------
5 | | Mix Asset Management
6 | |--------------------------------------------------------------------------
7 | |
8 | | Mix provides a clean, fluent API for defining some Webpack build steps
9 | | for your Laravel application. By default, we are compiling the Sass
10 | | file for the application as well as bundling up all the JS files.
11 | |
12 | */
13 |
14 | mix.js('resources/assets/js/app.js', 'public/js')
15 | .sass('resources/assets/sass/app.scss', 'public/css');
16 |
--------------------------------------------------------------------------------
/routes/web.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/routes/console.php:
--------------------------------------------------------------------------------
1 | comment(Inspiring::quote());
18 | })->describe('Display an inspiring quote');
19 |
--------------------------------------------------------------------------------
/bootstrap/autoload.php:
--------------------------------------------------------------------------------
1 |
2 |
5 | composer install 6 | composer update7 |
php artisan key:generate
You can find the detailed post here
16 | 17 | @include('beautymail::templates.ark.contentEnd') 18 | 19 | @include('beautymail::templates.ark.heading', [ 20 | 'heading' => 'Some of my posts', 21 | 'level' => 'h2' 22 | ]) 23 | 24 | @include('beautymail::templates.ark.contentStart') 25 | 26 |
30 |
31 | Posts search and gallery view app in Vuejs
32 | |
33 |
34 |
35 | Introduction to vue.js in Laravel
36 | |
37 |
38 |
39 | Laravel Social Login using Socialite
40 | |
41 |
42 |
45 |
46 | How to implement DataTables server-side in laravel
47 | |
48 |
49 |
50 | Ajax CRUD operations in laravel
51 | |
52 |
53 |
54 | Visualization of data using highcharts in laravel
55 | |
56 |
57 |
61 |
62 | Custom Authentication with validation in laravel
63 | |
64 |
65 |
66 | How to use encryption, decryption, hashing (cryptography) in laravel
67 | |
68 |
69 |
70 | Search functionality in Laravel
71 | |
72 |
75 |
76 | How to integrate Stripe payment gateway in laravel
77 | |
78 |
79 |
80 | Paginated data with Search functionality
81 | |
82 |
83 |
84 | Bootgrid implementation in laravel
85 | |
86 |