apexcharts.init.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  1. /******/ (function() { // webpackBootstrap
  2. /******/ var __webpack_modules__ = ({
  3. /***/ "./resources/js/pages/apexcharts.init.js":
  4. /*!***********************************************!*\
  5. !*** ./resources/js/pages/apexcharts.init.js ***!
  6. \***********************************************/
  7. /***/ (function() {
  8. /*
  9. Template Name: Skote - Admin & Dashboard Template
  10. Author: Themesbrand
  11. Website: https://themesbrand.com/
  12. Contact: themesbrand@gmail.com
  13. File: Apex Chart init js
  14. */
  15. // get colors array from the string
  16. function getChartColorsArray(chartId) {
  17. if (document.getElementById(chartId) !== null) {
  18. var colors = document.getElementById(chartId).getAttribute("data-colors");
  19. if (colors) {
  20. colors = JSON.parse(colors);
  21. return colors.map(function (value) {
  22. var newValue = value.replace(" ", "");
  23. if (newValue.indexOf(",") === -1) {
  24. var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
  25. if (color){
  26. color = color.replace(" ", "");
  27. return color;
  28. }
  29. else return newValue;;
  30. } else {
  31. var val = value.split(',');
  32. if (val.length == 2) {
  33. var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
  34. rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
  35. return rgbaColor;
  36. } else {
  37. return newValue;
  38. }
  39. }
  40. });
  41. }
  42. }
  43. } // line chart datalabel
  44. var lineChartDatalabelColors = getChartColorsArray("line_chart_datalabel");
  45. if (lineChartDatalabelColors) {
  46. var options = {
  47. chart: {
  48. height: 380,
  49. type: 'line',
  50. zoom: {
  51. enabled: false
  52. },
  53. toolbar: {
  54. show: false
  55. }
  56. },
  57. colors: lineChartDatalabelColors,
  58. dataLabels: {
  59. enabled: false
  60. },
  61. stroke: {
  62. width: [3, 3],
  63. curve: 'straight'
  64. },
  65. series: [{
  66. name: "High - 2018",
  67. data: [26, 24, 32, 36, 33, 31, 33]
  68. }, {
  69. name: "Low - 2018",
  70. data: [14, 11, 16, 12, 17, 13, 12]
  71. }],
  72. title: {
  73. text: 'Average High & Low Temperature',
  74. align: 'left',
  75. style: {
  76. fontWeight: '500'
  77. }
  78. },
  79. grid: {
  80. row: {
  81. colors: ['transparent', 'transparent'],
  82. // takes an array which will be repeated on columns
  83. opacity: 0.2
  84. },
  85. borderColor: '#f1f1f1'
  86. },
  87. markers: {
  88. style: 'inverted',
  89. size: 6
  90. },
  91. xaxis: {
  92. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'],
  93. title: {
  94. text: 'Month'
  95. }
  96. },
  97. yaxis: {
  98. title: {
  99. text: 'Temperature'
  100. },
  101. min: 5,
  102. max: 40
  103. },
  104. legend: {
  105. position: 'top',
  106. horizontalAlign: 'right',
  107. floating: true,
  108. offsetY: -25,
  109. offsetX: -5
  110. },
  111. responsive: [{
  112. breakpoint: 600,
  113. options: {
  114. chart: {
  115. toolbar: {
  116. show: false
  117. }
  118. },
  119. legend: {
  120. show: false
  121. }
  122. }
  123. }]
  124. };
  125. var chart = new ApexCharts(document.querySelector("#line_chart_datalabel"), options);
  126. chart.render();
  127. } // line chart datalabel
  128. var lineChartdashedColors = getChartColorsArray("line_chart_dashed");
  129. if (lineChartdashedColors) {
  130. var options = {
  131. chart: {
  132. height: 380,
  133. type: 'line',
  134. zoom: {
  135. enabled: false
  136. },
  137. toolbar: {
  138. show: false
  139. }
  140. },
  141. colors: lineChartdashedColors,
  142. dataLabels: {
  143. enabled: false
  144. },
  145. stroke: {
  146. width: [3, 4, 3],
  147. curve: 'straight',
  148. dashArray: [0, 8, 5]
  149. },
  150. series: [{
  151. name: "Session Duration",
  152. data: [45, 52, 38, 24, 33, 26, 21, 20, 6, 8, 15, 10]
  153. }, {
  154. name: "Page Views",
  155. data: [36, 42, 60, 42, 13, 18, 29, 37, 36, 51, 32, 35]
  156. }, {
  157. name: 'Total Visits',
  158. data: [89, 56, 74, 98, 72, 38, 64, 46, 84, 58, 46, 49]
  159. }],
  160. title: {
  161. text: 'Page Statistics',
  162. align: 'left',
  163. style: {
  164. fontWeight: '500'
  165. }
  166. },
  167. markers: {
  168. size: 0,
  169. hover: {
  170. sizeOffset: 6
  171. }
  172. },
  173. xaxis: {
  174. categories: ['01 Jan', '02 Jan', '03 Jan', '04 Jan', '05 Jan', '06 Jan', '07 Jan', '08 Jan', '09 Jan', '10 Jan', '11 Jan', '12 Jan']
  175. },
  176. tooltip: {
  177. y: [{
  178. title: {
  179. formatter: function formatter(val) {
  180. return val + " (mins)";
  181. }
  182. }
  183. }, {
  184. title: {
  185. formatter: function formatter(val) {
  186. return val + " per session";
  187. }
  188. }
  189. }, {
  190. title: {
  191. formatter: function formatter(val) {
  192. return val;
  193. }
  194. }
  195. }]
  196. },
  197. grid: {
  198. borderColor: '#f1f1f1'
  199. }
  200. };
  201. var chart = new ApexCharts(document.querySelector("#line_chart_dashed"), options);
  202. chart.render();
  203. } // spline_area
  204. var lineChartsplineAreaColors = getChartColorsArray("spline_area");
  205. if (lineChartsplineAreaColors) {
  206. var options = {
  207. chart: {
  208. height: 350,
  209. type: 'area',
  210. toolbar: {
  211. show: false
  212. }
  213. },
  214. dataLabels: {
  215. enabled: false
  216. },
  217. stroke: {
  218. curve: 'smooth',
  219. width: 3
  220. },
  221. series: [{
  222. name: 'series1',
  223. data: [34, 40, 28, 52, 42, 109, 100]
  224. }, {
  225. name: 'series2',
  226. data: [32, 60, 34, 46, 34, 52, 41]
  227. }],
  228. colors: lineChartsplineAreaColors,
  229. xaxis: {
  230. type: 'datetime',
  231. categories: ["2018-09-19T00:00:00", "2018-09-19T01:30:00", "2018-09-19T02:30:00", "2018-09-19T03:30:00", "2018-09-19T04:30:00", "2018-09-19T05:30:00", "2018-09-19T06:30:00"]
  232. },
  233. grid: {
  234. borderColor: '#f1f1f1'
  235. },
  236. tooltip: {
  237. x: {
  238. format: 'dd/MM/yy HH:mm'
  239. }
  240. }
  241. };
  242. var chart = new ApexCharts(document.querySelector("#spline_area"), options);
  243. chart.render();
  244. } // column chart
  245. var columnChartColors = getChartColorsArray("column_chart");
  246. if (columnChartColors) {
  247. var options = {
  248. chart: {
  249. height: 350,
  250. type: 'bar',
  251. toolbar: {
  252. show: false
  253. }
  254. },
  255. plotOptions: {
  256. bar: {
  257. horizontal: false,
  258. columnWidth: '45%',
  259. endingShape: 'rounded'
  260. }
  261. },
  262. dataLabels: {
  263. enabled: false
  264. },
  265. stroke: {
  266. show: true,
  267. width: 2,
  268. colors: ['transparent']
  269. },
  270. series: [{
  271. name: 'Net Profit',
  272. data: [46, 57, 59, 54, 62, 58, 64, 60, 66]
  273. }, {
  274. name: 'Revenue',
  275. data: [74, 83, 102, 97, 86, 106, 93, 114, 94]
  276. }, {
  277. name: 'Free Cash Flow',
  278. data: [37, 42, 38, 26, 47, 50, 54, 55, 43]
  279. }],
  280. colors: columnChartColors,
  281. xaxis: {
  282. categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct']
  283. },
  284. yaxis: {
  285. title: {
  286. text: '$ (thousands)',
  287. style: {
  288. fontWeight: '500'
  289. }
  290. }
  291. },
  292. grid: {
  293. borderColor: '#f1f1f1'
  294. },
  295. fill: {
  296. opacity: 1
  297. },
  298. tooltip: {
  299. y: {
  300. formatter: function formatter(val) {
  301. return "$ " + val + " thousands";
  302. }
  303. }
  304. }
  305. };
  306. var chart = new ApexCharts(document.querySelector("#column_chart"), options);
  307. chart.render();
  308. } // column chart with datalabels
  309. var columnChartDatalabelColors = getChartColorsArray("column_chart_datalabel");
  310. if (columnChartDatalabelColors) {
  311. var options = {
  312. chart: {
  313. height: 350,
  314. type: 'bar',
  315. toolbar: {
  316. show: false
  317. }
  318. },
  319. plotOptions: {
  320. bar: {
  321. dataLabels: {
  322. position: 'top' // top, center, bottom
  323. }
  324. }
  325. },
  326. dataLabels: {
  327. enabled: true,
  328. formatter: function formatter(val) {
  329. return val + "%";
  330. },
  331. offsetY: -22,
  332. style: {
  333. fontSize: '12px',
  334. colors: ["#304758"]
  335. }
  336. },
  337. series: [{
  338. name: 'Inflation',
  339. data: [2.5, 3.2, 5.0, 10.1, 4.2, 3.8, 3, 2.4, 4.0, 1.2, 3.5, 0.8]
  340. }],
  341. colors: columnChartDatalabelColors,
  342. grid: {
  343. borderColor: '#f1f1f1'
  344. },
  345. xaxis: {
  346. categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
  347. position: 'top',
  348. labels: {
  349. offsetY: -18
  350. },
  351. axisBorder: {
  352. show: false
  353. },
  354. axisTicks: {
  355. show: false
  356. },
  357. crosshairs: {
  358. fill: {
  359. type: 'gradient',
  360. gradient: {
  361. colorFrom: '#D8E3F0',
  362. colorTo: '#BED1E6',
  363. stops: [0, 100],
  364. opacityFrom: 0.4,
  365. opacityTo: 0.5
  366. }
  367. }
  368. },
  369. tooltip: {
  370. enabled: true,
  371. offsetY: -35
  372. }
  373. },
  374. fill: {
  375. gradient: {
  376. shade: 'light',
  377. type: "horizontal",
  378. shadeIntensity: 0.25,
  379. gradientToColors: undefined,
  380. inverseColors: true,
  381. opacityFrom: 1,
  382. opacityTo: 1,
  383. stops: [50, 0, 100, 100]
  384. }
  385. },
  386. yaxis: {
  387. axisBorder: {
  388. show: false
  389. },
  390. axisTicks: {
  391. show: false
  392. },
  393. labels: {
  394. show: false,
  395. formatter: function formatter(val) {
  396. return val + "%";
  397. }
  398. }
  399. },
  400. title: {
  401. text: 'Monthly Inflation in Argentina, 2002',
  402. floating: true,
  403. offsetY: 330,
  404. align: 'center',
  405. style: {
  406. color: '#444',
  407. fontWeight: '500'
  408. }
  409. }
  410. };
  411. var chart = new ApexCharts(document.querySelector("#column_chart_datalabel"), options);
  412. chart.render();
  413. } // Bar chart
  414. var barChartColors = getChartColorsArray("bar_chart");
  415. if (barChartColors) {
  416. var options = {
  417. chart: {
  418. height: 350,
  419. type: 'bar',
  420. toolbar: {
  421. show: false
  422. }
  423. },
  424. plotOptions: {
  425. bar: {
  426. horizontal: true
  427. }
  428. },
  429. dataLabels: {
  430. enabled: false
  431. },
  432. series: [{
  433. data: [380, 430, 450, 475, 550, 584, 780, 1100, 1220, 1365]
  434. }],
  435. colors: barChartColors,
  436. grid: {
  437. borderColor: '#f1f1f1'
  438. },
  439. xaxis: {
  440. categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany']
  441. }
  442. };
  443. var chart = new ApexCharts(document.querySelector("#bar_chart"), options);
  444. chart.render();
  445. } // Mixed chart
  446. var mixedChartColors = getChartColorsArray("mixed_chart");
  447. if (mixedChartColors) {
  448. var options = {
  449. chart: {
  450. height: 350,
  451. type: 'line',
  452. stacked: false,
  453. toolbar: {
  454. show: false
  455. }
  456. },
  457. stroke: {
  458. width: [0, 2, 4],
  459. curve: 'smooth'
  460. },
  461. plotOptions: {
  462. bar: {
  463. columnWidth: '50%'
  464. }
  465. },
  466. colors: mixedChartColors,
  467. series: [{
  468. name: 'Team A',
  469. type: 'column',
  470. data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]
  471. }, {
  472. name: 'Team B',
  473. type: 'area',
  474. data: [44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]
  475. }, {
  476. name: 'Team C',
  477. type: 'line',
  478. data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]
  479. }],
  480. fill: {
  481. opacity: [0.85, 0.25, 1],
  482. gradient: {
  483. inverseColors: false,
  484. shade: 'light',
  485. type: "vertical",
  486. opacityFrom: 0.85,
  487. opacityTo: 0.55,
  488. stops: [0, 100, 100, 100]
  489. }
  490. },
  491. labels: ['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003', '05/01/2003', '06/01/2003', '07/01/2003', '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003'],
  492. markers: {
  493. size: 0
  494. },
  495. xaxis: {
  496. type: 'datetime'
  497. },
  498. yaxis: {
  499. title: {
  500. text: 'Points'
  501. }
  502. },
  503. tooltip: {
  504. shared: true,
  505. intersect: false,
  506. y: {
  507. formatter: function formatter(y) {
  508. if (typeof y !== "undefined") {
  509. return y.toFixed(0) + " points";
  510. }
  511. return y;
  512. }
  513. }
  514. },
  515. grid: {
  516. borderColor: '#f1f1f1'
  517. }
  518. };
  519. var chart = new ApexCharts(document.querySelector("#mixed_chart"), options);
  520. chart.render();
  521. } // Radial chart
  522. var radialChartColors = getChartColorsArray("radial_chart");
  523. if (radialChartColors) {
  524. var options = {
  525. chart: {
  526. height: 370,
  527. type: 'radialBar'
  528. },
  529. plotOptions: {
  530. radialBar: {
  531. dataLabels: {
  532. name: {
  533. fontSize: '22px'
  534. },
  535. value: {
  536. fontSize: '16px'
  537. },
  538. total: {
  539. show: true,
  540. label: 'Total',
  541. formatter: function formatter(w) {
  542. // By default this function returns the average of all series. The below is just an example to show the use of custom formatter function
  543. return 249;
  544. }
  545. }
  546. }
  547. }
  548. },
  549. series: [44, 55, 67, 83],
  550. labels: ['Computer', 'Tablet', 'Laptop', 'Mobile'],
  551. colors: radialChartColors
  552. };
  553. var chart = new ApexCharts(document.querySelector("#radial_chart"), options);
  554. chart.render();
  555. } // pie chart
  556. var pieChartColors = getChartColorsArray("pie_chart");
  557. if (pieChartColors) {
  558. var options = {
  559. chart: {
  560. height: 320,
  561. type: 'pie'
  562. },
  563. series: [44, 55, 41, 17, 15],
  564. labels: ["Series 1", "Series 2", "Series 3", "Series 4", "Series 5"],
  565. colors: pieChartColors,
  566. legend: {
  567. show: true,
  568. position: 'bottom',
  569. horizontalAlign: 'center',
  570. verticalAlign: 'middle',
  571. floating: false,
  572. fontSize: '14px',
  573. offsetX: 0
  574. },
  575. responsive: [{
  576. breakpoint: 600,
  577. options: {
  578. chart: {
  579. height: 240
  580. },
  581. legend: {
  582. show: false
  583. }
  584. }
  585. }]
  586. };
  587. var chart = new ApexCharts(document.querySelector("#pie_chart"), options);
  588. chart.render();
  589. } // Donut chart
  590. var donutChartColors = getChartColorsArray("donut_chart");
  591. if (donutChartColors) {
  592. var options = {
  593. chart: {
  594. height: 320,
  595. type: 'donut'
  596. },
  597. series: [44, 55, 41, 17, 15],
  598. labels: ["Series 1", "Series 2", "Series 3", "Series 4", "Series 5"],
  599. colors: donutChartColors,
  600. legend: {
  601. show: true,
  602. position: 'bottom',
  603. horizontalAlign: 'center',
  604. verticalAlign: 'middle',
  605. floating: false,
  606. fontSize: '14px',
  607. offsetX: 0
  608. },
  609. responsive: [{
  610. breakpoint: 600,
  611. options: {
  612. chart: {
  613. height: 240
  614. },
  615. legend: {
  616. show: false
  617. }
  618. }
  619. }]
  620. };
  621. var chart = new ApexCharts(document.querySelector("#donut_chart"), options);
  622. chart.render();
  623. }
  624. /***/ }),
  625. /***/ "./resources/scss/bootstrap.scss":
  626. /*!***************************************!*\
  627. !*** ./resources/scss/bootstrap.scss ***!
  628. \***************************************/
  629. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  630. "use strict";
  631. __webpack_require__.r(__webpack_exports__);
  632. // extracted by mini-css-extract-plugin
  633. /***/ }),
  634. /***/ "./resources/scss/icons.scss":
  635. /*!***********************************!*\
  636. !*** ./resources/scss/icons.scss ***!
  637. \***********************************/
  638. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  639. "use strict";
  640. __webpack_require__.r(__webpack_exports__);
  641. // extracted by mini-css-extract-plugin
  642. /***/ }),
  643. /***/ "./resources/scss/app.scss":
  644. /*!*********************************!*\
  645. !*** ./resources/scss/app.scss ***!
  646. \*********************************/
  647. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  648. "use strict";
  649. __webpack_require__.r(__webpack_exports__);
  650. // extracted by mini-css-extract-plugin
  651. /***/ })
  652. /******/ });
  653. /************************************************************************/
  654. /******/ // The module cache
  655. /******/ var __webpack_module_cache__ = {};
  656. /******/
  657. /******/ // The require function
  658. /******/ function __webpack_require__(moduleId) {
  659. /******/ // Check if module is in cache
  660. /******/ var cachedModule = __webpack_module_cache__[moduleId];
  661. /******/ if (cachedModule !== undefined) {
  662. /******/ return cachedModule.exports;
  663. /******/ }
  664. /******/ // Create a new module (and put it into the cache)
  665. /******/ var module = __webpack_module_cache__[moduleId] = {
  666. /******/ // no module.id needed
  667. /******/ // no module.loaded needed
  668. /******/ exports: {}
  669. /******/ };
  670. /******/
  671. /******/ // Execute the module function
  672. /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
  673. /******/
  674. /******/ // Return the exports of the module
  675. /******/ return module.exports;
  676. /******/ }
  677. /******/
  678. /******/ // expose the modules object (__webpack_modules__)
  679. /******/ __webpack_require__.m = __webpack_modules__;
  680. /******/
  681. /************************************************************************/
  682. /******/ /* webpack/runtime/chunk loaded */
  683. /******/ !function() {
  684. /******/ var deferred = [];
  685. /******/ __webpack_require__.O = function(result, chunkIds, fn, priority) {
  686. /******/ if(chunkIds) {
  687. /******/ priority = priority || 0;
  688. /******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
  689. /******/ deferred[i] = [chunkIds, fn, priority];
  690. /******/ return;
  691. /******/ }
  692. /******/ var notFulfilled = Infinity;
  693. /******/ for (var i = 0; i < deferred.length; i++) {
  694. /******/ var chunkIds = deferred[i][0];
  695. /******/ var fn = deferred[i][1];
  696. /******/ var priority = deferred[i][2];
  697. /******/ var fulfilled = true;
  698. /******/ for (var j = 0; j < chunkIds.length; j++) {
  699. /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {
  700. /******/ chunkIds.splice(j--, 1);
  701. /******/ } else {
  702. /******/ fulfilled = false;
  703. /******/ if(priority < notFulfilled) notFulfilled = priority;
  704. /******/ }
  705. /******/ }
  706. /******/ if(fulfilled) {
  707. /******/ deferred.splice(i--, 1)
  708. /******/ var r = fn();
  709. /******/ if (r !== undefined) result = r;
  710. /******/ }
  711. /******/ }
  712. /******/ return result;
  713. /******/ };
  714. /******/ }();
  715. /******/
  716. /******/ /* webpack/runtime/hasOwnProperty shorthand */
  717. /******/ !function() {
  718. /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
  719. /******/ }();
  720. /******/
  721. /******/ /* webpack/runtime/make namespace object */
  722. /******/ !function() {
  723. /******/ // define __esModule on exports
  724. /******/ __webpack_require__.r = function(exports) {
  725. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  726. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  727. /******/ }
  728. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  729. /******/ };
  730. /******/ }();
  731. /******/
  732. /******/ /* webpack/runtime/jsonp chunk loading */
  733. /******/ !function() {
  734. /******/ // no baseURI
  735. /******/
  736. /******/ // object to store loaded and loading chunks
  737. /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
  738. /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
  739. /******/ var installedChunks = {
  740. /******/ "/assets/js/pages/apexcharts.init": 0,
  741. /******/ "assets/css/app": 0,
  742. /******/ "assets/css/icons": 0,
  743. /******/ "assets/css/bootstrap": 0
  744. /******/ };
  745. /******/
  746. /******/ // no chunk on demand loading
  747. /******/
  748. /******/ // no prefetching
  749. /******/
  750. /******/ // no preloaded
  751. /******/
  752. /******/ // no HMR
  753. /******/
  754. /******/ // no HMR manifest
  755. /******/
  756. /******/ __webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };
  757. /******/
  758. /******/ // install a JSONP callback for chunk loading
  759. /******/ var webpackJsonpCallback = function(parentChunkLoadingFunction, data) {
  760. /******/ var chunkIds = data[0];
  761. /******/ var moreModules = data[1];
  762. /******/ var runtime = data[2];
  763. /******/ // add "moreModules" to the modules object,
  764. /******/ // then flag all "chunkIds" as loaded and fire callback
  765. /******/ var moduleId, chunkId, i = 0;
  766. /******/ if(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {
  767. /******/ for(moduleId in moreModules) {
  768. /******/ if(__webpack_require__.o(moreModules, moduleId)) {
  769. /******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
  770. /******/ }
  771. /******/ }
  772. /******/ if(runtime) var result = runtime(__webpack_require__);
  773. /******/ }
  774. /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
  775. /******/ for(;i < chunkIds.length; i++) {
  776. /******/ chunkId = chunkIds[i];
  777. /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
  778. /******/ installedChunks[chunkId][0]();
  779. /******/ }
  780. /******/ installedChunks[chunkId] = 0;
  781. /******/ }
  782. /******/ return __webpack_require__.O(result);
  783. /******/ }
  784. /******/
  785. /******/ var chunkLoadingGlobal = self["webpackChunkskote"] = self["webpackChunkskote"] || [];
  786. /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
  787. /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
  788. /******/ }();
  789. /******/
  790. /************************************************************************/
  791. /******/
  792. /******/ // startup
  793. /******/ // Load entry module and return exports
  794. /******/ // This entry module depends on other loaded chunks and execution need to be delayed
  795. /******/ __webpack_require__.O(undefined, ["assets/css/app","assets/css/icons","assets/css/bootstrap"], function() { return __webpack_require__("./resources/js/pages/apexcharts.init.js"); })
  796. /******/ __webpack_require__.O(undefined, ["assets/css/app","assets/css/icons","assets/css/bootstrap"], function() { return __webpack_require__("./resources/scss/bootstrap.scss"); })
  797. /******/ __webpack_require__.O(undefined, ["assets/css/app","assets/css/icons","assets/css/bootstrap"], function() { return __webpack_require__("./resources/scss/icons.scss"); })
  798. /******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["assets/css/app","assets/css/icons","assets/css/bootstrap"], function() { return __webpack_require__("./resources/scss/app.scss"); })
  799. /******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
  800. /******/
  801. /******/ })()
  802. ;