Skip to content

Commit

Permalink
Use Sweet Alert
Browse files Browse the repository at this point in the history
  • Loading branch information
bestmomo committed Sep 9, 2016
1 parent 75905c2 commit 1973d54
Show file tree
Hide file tree
Showing 10 changed files with 991 additions and 18 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ It's an upgrade of [this repository](https://github.com/bestmomo/laravel5-exampl
* `cd projectname`
* `composer install`
* `touch database/database.sqlite`
* Copy *.env.example* to *.env*; set DB_DATABASE to the absolute path of the file created above
* Copy *.env.example* to *.env*
* Set DB_DATABASE to the absolute path of the file created above
* `php artisan key:generate`
* `php artisan migrate --seed` to create and populate tables
* Edit *.env* for emails configuration
Expand All @@ -26,6 +27,7 @@ It's an upgrade of [this repository](https://github.com/bestmomo/laravel5-exampl
* [Elfinder](https://github.com/Studio-42/elFinder) the nice file manager
* [laravel-lipsum](https://github.com/magyarjeti/laravel-lipsum) for the lipsum generator
* [Laravel Collective](https://laravelcollective.com/) for Forms and Html
* [Sweat Alert](http://t4t5.github.io/sweetalert/) for the cool alerts

### Features ###

Expand Down
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ elixir.config.sourcemaps = false;
elixir(mix => {
mix.sass([
'front/front.scss',
'font-awesome-4.6.3/scss/font-awesome.scss'
'font-awesome-4.6.3/scss/font-awesome.scss',
'sweetalert.css'
],
'public/css/front.css'
);
mix.sass([
'back/back.scss',
'font-awesome-4.6.3/scss/font-awesome.scss'
'font-awesome-4.6.3/scss/font-awesome.scss',
'sweetalert.css'
],
'public/css/back.css'
);
Expand Down
1 change: 1 addition & 0 deletions public/js/sweetalert.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 1973d54

Please sign in to comment.