Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

jQuery: https://code.jquery.com/jquery/

1 CDN implementation

 

The implementation is done in views/bootstrap/header.blade.php (for CSS) and views/bootstrap/footer.blade.php (JS) Files. There are several ways to implement these Frameworks, such as composer, via cdn or by downloading the corresponding files.

1 CDN implementation

For fast development, prototyping and testing it is recommended to use CDN (Content Delivery Network) links. The needed links can be found on the mentioned websites.

The implementation is done in views/bootstrap/header.blade.php (for CSS) and views/bootstrap/footer.blade.php (JS) Files. 

Code Block
languagecss
titleExample CSS implementation
collapsetrue
 <link href="{{asset('components/assets-admin/plugins/bootstraphttps://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css')}}" rel="stylesheet" />
Code Block
languagephp
titleExample JS implementation
<script 
src="{{asset('components/assets-admin/plugins/select2-v4/vendor/select2/select2/dist/js/select2.js')}}"></script>https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
ProsCons
  • easy and fast to implement
  • Requesting external sources
  • high availability (100% uptime)
  • longer access time when called from "local" network
  • easy to upgrade
 
  • easy to maintain ( - no maintanance)
 

2 Local implementation

 

 

 

 

 

 

Info

...