├── Modules
├── Main
│ ├── Emails
│ │ └── .gitkeep
│ ├── Events
│ │ └── .gitkeep
│ ├── Jobs
│ │ └── .gitkeep
│ ├── Models
│ │ └── .gitkeep
│ ├── Tests
│ │ └── .gitkeep
│ ├── Console
│ │ └── .gitkeep
│ ├── Listeners
│ │ └── .gitkeep
│ ├── Http
│ │ ├── Middleware
│ │ │ └── .gitkeep
│ │ ├── Requests
│ │ │ └── .gitkeep
│ │ ├── breadcrumbs.php
│ │ ├── Controllers
│ │ │ └── MainController.php
│ │ └── routes.php
│ ├── Notifications
│ │ └── .gitkeep
│ ├── Resources
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── assets
│ │ │ └── js
│ │ │ │ └── custom.js
│ │ └── views
│ │ │ ├── pages
│ │ │ └── home
│ │ │ │ └── index.blade.php
│ │ │ └── layouts
│ │ │ ├── master.blade.php
│ │ │ └── partials
│ │ │ ├── footer.blade.php
│ │ │ └── head.blade.php
│ ├── Database
│ │ ├── Migrations
│ │ │ └── .gitkeep
│ │ └── Seeders
│ │ │ └── MainDatabaseSeeder.php
│ ├── module.json
│ ├── composer.json
│ ├── start.php
│ ├── Config
│ │ └── config.php
│ └── Helpers
│ │ └── site.php
├── User
│ ├── Emails
│ │ └── .gitkeep
│ ├── Events
│ │ ├── Handlers
│ │ │ └── .gitkeep
│ │ └── Subscribers
│ │ │ └── UserSubscriber.php
│ ├── module.json
│ ├── Database
│ │ ├── Seeders
│ │ │ └── UserDatabaseSeeder.php
│ │ └── Migrations
│ │ │ ├── 2014_10_12_100000_create_password_resets_table.php
│ │ │ └── 2016_02_06_172606_create_users_table.php
│ ├── Providers
│ │ └── EventServiceProvider.php
│ ├── composer.json
│ ├── start.php
│ ├── Http
│ │ ├── Controllers
│ │ │ └── Auth
│ │ │ │ ├── ForgotPasswordController.php
│ │ │ │ └── ResetPasswordController.php
│ │ └── routes.php
│ ├── Config
│ │ └── config.php
│ ├── Notifications
│ │ ├── PasswordWasReset.php
│ │ ├── VerifyRegister.php
│ │ └── UserWasRegistered.php
│ └── Resources
│ │ └── views
│ │ └── auth
│ │ └── passwords
│ │ └── email.blade.php
├── Admin
│ ├── Notifications
│ │ └── .gitkeep
│ ├── Resources
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── views
│ │ │ ├── pages
│ │ │ │ └── user
│ │ │ │ │ └── index.blade.php
│ │ │ ├── partials
│ │ │ │ ├── footer.blade.php
│ │ │ │ ├── head.blade.php
│ │ │ │ └── sidebar.blade.php
│ │ │ └── layout.blade.php
│ │ └── assets
│ │ │ ├── js
│ │ │ └── custom.js
│ │ │ └── css
│ │ │ └── custom.css
│ ├── Database
│ │ ├── Migrations
│ │ │ └── .gitkeep
│ │ └── Seeders
│ │ │ └── AdminDatabaseSeeder.php
│ ├── Config
│ │ └── config.php
│ ├── Http
│ │ ├── breadcrumbs.php
│ │ ├── Middleware
│ │ │ └── AdminMiddleware.php
│ │ ├── Controllers
│ │ │ └── UserController.php
│ │ └── routes.php
│ ├── module.json
│ ├── composer.json
│ └── start.php
├── Core
│ ├── Resources
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── views
│ │ │ ├── directives
│ │ │ │ ├── alert.php
│ │ │ │ ├── js.php
│ │ │ │ └── pushonce.php
│ │ │ ├── shared
│ │ │ │ ├── submit.blade.php
│ │ │ │ ├── table.blade.php
│ │ │ │ ├── loader.blade.php
│ │ │ │ ├── overlay.blade.php
│ │ │ │ ├── errors.blade.php
│ │ │ │ ├── socket.blade.php
│ │ │ │ └── datatables_reorder.blade.php
│ │ │ ├── popups
│ │ │ │ ├── general.blade.php
│ │ │ │ └── delete_confirm.blade.php
│ │ │ └── components
│ │ │ │ ├── panel.blade.php
│ │ │ │ └── card.blade.php
│ │ └── assets
│ │ │ └── js
│ │ │ └── plugins
│ │ │ ├── disabler.min.js
│ │ │ ├── datatables
│ │ │ └── fnFilterOnReturn.js
│ │ │ ├── jquery-content-preview
│ │ │ ├── jquery-content-preview.css
│ │ │ └── jquery-content-preview.js
│ │ │ └── jquery.pulsate.min.js
│ ├── start.php
│ ├── Config
│ │ └── config.php
│ ├── Recipients
│ │ ├── Recipient.php
│ │ ├── AdminRecipient.php
│ │ └── DynamicRecipient.php
│ ├── composer.json
│ ├── module.json
│ ├── Http
│ │ ├── routes.php
│ │ ├── Middleware
│ │ │ ├── HttpsProtocol.php
│ │ │ ├── XSSProtection.php
│ │ │ ├── Cached.php
│ │ │ ├── Headers.php
│ │ │ └── OptimizeMiddleware.php
│ │ └── Controllers
│ │ │ └── CoreController.php
│ ├── macros.php
│ ├── Traits
│ │ └── Model
│ │ │ ├── Validatable.php
│ │ │ ├── Encryptable.php
│ │ │ ├── Cacheable
│ │ │ └── EloquentBuilder.php
│ │ │ └── Filterable.php
│ ├── Providers
│ │ ├── DirectiveServiceProvider.php
│ │ ├── ScheduleServiceProvider.php
│ │ └── LogEnhancer.php
│ ├── Facades
│ │ └── Socket.php
│ ├── Console
│ │ ├── CoreCommand.php
│ │ ├── SocketServer.php
│ │ └── Cleanup.php
│ └── Models
│ │ └── CoreModel.php
├── Task
│ ├── Events
│ │ ├── Handlers
│ │ │ └── .gitkeep
│ │ └── Subscribers
│ │ │ └── TaskSubscriber.php
│ ├── Config
│ │ └── config.php
│ ├── Http
│ │ ├── breadcrumbs.php
│ │ ├── routes.php
│ │ └── Controllers
│ │ │ └── TaskController.php
│ ├── Database
│ │ ├── Seeders
│ │ │ └── TaskDatabaseSeeder.php
│ │ └── Migrations
│ │ │ └── 2018_02_04_062557_Create_tasks_table.php
│ ├── module.json
│ ├── composer.json
│ ├── Providers
│ │ └── EventServiceProvider.php
│ ├── start.php
│ └── Resources
│ │ └── views
│ │ └── pages
│ │ └── task
│ │ ├── edit.blade.php
│ │ ├── _form.blade.php
│ │ └── index.blade.php
└── Crud
│ ├── Config
│ └── config.php
│ ├── Resources
│ ├── assets
│ │ ├── css
│ │ │ ├── bootstrap
│ │ │ │ └── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── custom.css
│ │ └── js
│ │ │ └── custom.js
│ └── views
│ │ ├── partials
│ │ ├── footer.blade.php
│ │ └── head.blade.php
│ │ └── layout.blade.php
│ ├── module.json
│ ├── macros.php
│ ├── start.php
│ ├── composer.json
│ └── Http
│ └── routes.php
├── resources
├── lang
│ ├── main
│ │ └── .gitkeep
│ ├── admin
│ │ └── .gitkeep
│ └── en
│ │ ├── pagination.php
│ │ ├── auth.php
│ │ └── passwords.php
├── views
│ ├── vendor
│ │ ├── mail
│ │ │ ├── markdown
│ │ │ │ ├── panel.blade.php
│ │ │ │ ├── table.blade.php
│ │ │ │ ├── footer.blade.php
│ │ │ │ ├── promotion.blade.php
│ │ │ │ ├── subcopy.blade.php
│ │ │ │ ├── button.blade.php
│ │ │ │ ├── header.blade.php
│ │ │ │ ├── promotion
│ │ │ │ │ └── button.blade.php
│ │ │ │ ├── layout.blade.php
│ │ │ │ └── message.blade.php
│ │ │ └── html
│ │ │ │ ├── table.blade.php
│ │ │ │ ├── header.blade.php
│ │ │ │ ├── subcopy.blade.php
│ │ │ │ ├── promotion.blade.php
│ │ │ │ ├── footer.blade.php
│ │ │ │ ├── panel.blade.php
│ │ │ │ ├── promotion
│ │ │ │ └── button.blade.php
│ │ │ │ ├── message.blade.php
│ │ │ │ ├── button.blade.php
│ │ │ │ └── layout.blade.php
│ │ ├── sweet
│ │ │ ├── alert.twig
│ │ │ └── alert.blade.php
│ │ ├── datatables
│ │ │ ├── script.blade.php
│ │ │ └── print.blade.php
│ │ ├── pagination
│ │ │ ├── simple-default.blade.php
│ │ │ ├── simple-bootstrap-4.blade.php
│ │ │ ├── default.blade.php
│ │ │ ├── semantic-ui.blade.php
│ │ │ └── bootstrap-4.blade.php
│ │ ├── flash
│ │ │ ├── modal.blade.php
│ │ │ └── message.blade.php
│ │ ├── terminal
│ │ │ ├── index.blade.php
│ │ │ └── panel.blade.php
│ │ └── notifications
│ │ │ └── email.blade.php
│ └── errors
│ │ ├── 404.blade.php
│ │ └── 503.blade.php
└── assets
│ ├── js
│ ├── components
│ │ ├── ExampleComponent.vue
│ │ └── task
│ │ │ └── view.vue
│ └── bootstrap.js
│ └── sass
│ ├── app.scss
│ └── _variables.scss
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── cache
│ └── .gitignore
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── public
├── robots.txt
├── logs.ico
├── tools.ico
├── favicon.ico
├── .htaccess
├── web.config
└── index.php
├── config
├── crud.php
├── task.php
├── admin.php
├── core.php
├── sweet-alert.php
├── socket.php
├── active.php
├── datatables-html.php
├── tinker.php
├── image.php
├── laravel-widgets.php
├── laravel-impersonate.php
├── user.php
├── pretty-routes.php
├── very_basic_auth.php
├── main.php
├── view.php
├── services.php
├── meta.php
├── broadcasting.php
├── querydetector.php
├── datatables-buttons.php
└── setting.php
├── routes
├── web.php
├── channels.php
├── console.php
└── api.php
├── .gitattributes
├── optimize.bat
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── database
├── seeds
│ └── DatabaseSeeder.php
└── factories
│ └── UserFactory.php
├── app
├── Http
│ └── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── TrimStrings.php
│ │ ├── RedirectIfAuthenticated.php
│ │ └── TrustProxies.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── Console
│ └── Kernel.php
├── readme.md
├── webpack.mix.js
├── server.php
├── .gitignore
├── .env
├── phpunit.xml
├── artisan
└── package.json
/Modules/Main/Emails/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Events/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Jobs/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Models/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Tests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/User/Emails/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/lang/main/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Console/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Listeners/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/lang/admin/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Admin/Notifications/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Admin/Resources/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Core/Resources/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Http/Middleware/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Http/Requests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Notifications/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Resources/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Task/Events/Handlers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/User/Events/Handlers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Admin/Database/Migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Main/Database/Migrations/.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/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Modules/Main/Resources/assets/js/custom.js:
--------------------------------------------------------------------------------
1 | // any custom code here...
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/panel.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/table.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/footer.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/promotion.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/subcopy.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/config/crud.php:
--------------------------------------------------------------------------------
1 | 'Crud'
5 | ];
6 |
--------------------------------------------------------------------------------
/config/task.php:
--------------------------------------------------------------------------------
1 | 'Task'
5 | ];
6 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/button.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}: {{ $url }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/header.blade.php:
--------------------------------------------------------------------------------
1 | [{{ $slot }}]({{ $url }})
2 |
--------------------------------------------------------------------------------
/Modules/Crud/Config/config.php:
--------------------------------------------------------------------------------
1 | 'Crud'
5 | ];
6 |
--------------------------------------------------------------------------------
/Modules/Task/Config/config.php:
--------------------------------------------------------------------------------
1 | 'Task'
5 | ];
6 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/promotion/button.blade.php:
--------------------------------------------------------------------------------
1 | [{{ $slot }}]({{ $url }})
2 |
--------------------------------------------------------------------------------
/public/logs.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarfraznawaz2005/laravel55-starter/HEAD/public/logs.ico
--------------------------------------------------------------------------------
/public/tools.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarfraznawaz2005/laravel55-starter/HEAD/public/tools.ico
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarfraznawaz2005/laravel55-starter/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/resources/views/vendor/mail/html/table.blade.php:
--------------------------------------------------------------------------------
1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }}
3 |
4 |
--------------------------------------------------------------------------------
/routes/web.php:
--------------------------------------------------------------------------------
1 | 'XSSProtection'], function () {
4 | // abandoned area...
5 | });
6 |
7 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/config/admin.php:
--------------------------------------------------------------------------------
1 | 'Admin',
5 |
6 | # specify whether to use breadcrumb feature
7 | 'breadcrumb' => true,
8 | ];
9 |
--------------------------------------------------------------------------------
/Modules/Admin/Config/config.php:
--------------------------------------------------------------------------------
1 | 'Admin',
5 |
6 | # specify whether to use breadcrumb feature
7 | 'breadcrumb' => true,
8 | ];
9 |
--------------------------------------------------------------------------------
/Modules/Main/Http/breadcrumbs.php:
--------------------------------------------------------------------------------
1 | push('Home', route('home'));
6 | });
7 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/html/header.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/resources/views/vendor/sweet/alert.twig:
--------------------------------------------------------------------------------
1 | {% if session_has('sweet_alert.alert') %}
2 |
5 | {% endif %}
6 |
--------------------------------------------------------------------------------
/resources/views/vendor/sweet/alert.blade.php:
--------------------------------------------------------------------------------
1 | @if (Session::has('sweet_alert.alert'))
2 |
5 | @endif
6 |
--------------------------------------------------------------------------------
/resources/views/vendor/datatables/script.blade.php:
--------------------------------------------------------------------------------
1 | (function(window,$){window.LaravelDataTables=window.LaravelDataTables||{};window.LaravelDataTables["%1$s"]=$("#%1$s").DataTable(%2$s);})(window,jQuery);
2 |
--------------------------------------------------------------------------------
/optimize.bat:
--------------------------------------------------------------------------------
1 | php artisan clear-compiled
2 | php artisan cache:clear
3 | php artisan view:clear
4 | php artisan config:clear
5 | php artisan optimize
6 | php artisan module:publish
7 | php artisan app:cleanup
8 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | 'Core',
5 |
6 | 'settings' => [
7 | 'global_date_format' => 'd M Y',
8 | 'minify_html_response' => false,
9 | 'enable_socket' => false,
10 | ],
11 | ];
12 |
--------------------------------------------------------------------------------
/Modules/Core/start.php:
--------------------------------------------------------------------------------
1 | routesAreCached()) {
4 | require __DIR__ . '/Http/routes.php';
5 | }
6 |
7 | // load helpers
8 | foreach (glob(__DIR__ . '/Helpers/*.php') as $filename) {
9 | require_once($filename);
10 | }
11 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/html/subcopy.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }}
5 | |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Modules/Core/Resources/views/directives/alert.php:
--------------------------------------------------------------------------------
1 | persistent('Close');?>";
6 | });
--------------------------------------------------------------------------------
/Modules/Core/Config/config.php:
--------------------------------------------------------------------------------
1 | 'Core',
5 |
6 | 'settings' => [
7 | 'global_date_format' => 'd M Y',
8 | 'minify_html_response' => false,
9 | 'enable_socket' => false,
10 | ],
11 | ];
12 |
--------------------------------------------------------------------------------
/config/sweet-alert.php:
--------------------------------------------------------------------------------
1 | autoclose(milliseconds) on the end.
7 | */
8 | 'autoclose' => 2000,
9 | ];
10 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/html/promotion.blade.php:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/Modules/Core/Resources/views/shared/submit.blade.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Modules/Admin/Resources/views/pages/user/index.blade.php:
--------------------------------------------------------------------------------
1 | @extends('admin::layout')
2 |
3 | @section('content')
4 |
5 | {!! $dataTable->table(['class' => 'table table-condensed table-bordered table-hover']) !!}
6 |
7 | @endsection
8 |
9 | @push('scripts')
10 | {!! $dataTable->scripts() !!}
11 | @endpush
12 |
--------------------------------------------------------------------------------
/Modules/Crud/Resources/views/partials/footer.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | {!! Packer::js([
4 | '/modules/core/js/jquery.js',
5 | '/modules/crud/css/bootstrap/css/bootstrap3.min.js',
6 | '/modules/crud/js/custom.js',
7 | ],
8 | '/storage/cache/js/')
9 | !!}
10 |
11 | @stack('scripts')
12 |
13 |