Laravel Mix's Webpack Configuration for auto dependencies extract and Workbox Caching strategies
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | document.addEventListener('alpine:init', () => { | |
| window.Alpine.data('autocompleter', ({ | |
| selectedResults, | |
| max, | |
| min, | |
| ownerId, | |
| url, | |
| elName, | |
| filterEls = [], | |
| addUrl = "", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <div class="container-fluid"> | |
| <div class="row"> | |
| <!-- /.col-md-6 --> | |
| <div class="col-lg-12"> | |
| <div class="card"> | |
| <div class="card-body"> | |
| <div class="row" id="laravelPagination" data-url="{{ route('country.page') }}" x-data="laravelPagination()" | |
| x-init="init()"> | |
| <template x-for="item in country" :key="item.id"> | |
| <div class="card col-12 mb-3"> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* -------------------------------- | |
| Typography | |
| -------------------------------- */ | |
| :root { | |
| --font-primary: sans-serif; | |
| --font-secondary: serif; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import Vue from 'vue'; | |
| import posts from './components/posts.vue'; | |
| window.axios = require('axios'); | |
| window.Vue = Vue; | |
| Vue.component('posts', posts); | |
| const app = new Vue({ | |
| el: '#app', | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Based on https://css-tricks.com/browser-compatibility-css-grid-layouts-simple-sass-mixins/ | |
| // This CSS Grid mixin and styles allow modern browsers to use the newer display: grid functionality, | |
| // but allow a fallback to Flexbox to support older browsers like IE 11. | |
| @mixin basic-styles { | |
| display: flex; | |
| align-items: center; // Vertically center all content | |
| } | |
| @mixin grid-child ($col-start, $col-end, $row-start, $row-end) { |