7 | Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
8 |
9 | JSZip uses the library pako released under the MIT license :
10 | https://github.com/nodeca/pako/blob/master/LICENSE
11 | */
12 |
--------------------------------------------------------------------------------
/public/css/product/vendors/jszip/lib/readable-stream-browser.js:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is used by module bundlers (browserify/webpack/etc) when
3 | * including a stream implementation. We use "readable-stream" to get a
4 | * consistent behavior between nodejs versions but bundlers often have a shim
5 | * for "stream". Using this shim greatly improve the compatibility and greatly
6 | * reduce the final size of the bundle (only one stream implementation, not
7 | * two).
8 | */
9 | module.exports = require("stream");
10 |
--------------------------------------------------------------------------------
/public/css/product/vendors/jszip/lib/reader/NodeBufferReader.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var Uint8ArrayReader = require('./Uint8ArrayReader');
3 | var utils = require('../utils');
4 |
5 | function NodeBufferReader(data) {
6 | Uint8ArrayReader.call(this, data);
7 | }
8 | utils.inherits(NodeBufferReader, Uint8ArrayReader);
9 |
10 | /**
11 | * @see DataReader.readData
12 | */
13 | NodeBufferReader.prototype.readData = function(size) {
14 | this.checkOffset(size);
15 | var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
16 | this.index += size;
17 | return result;
18 | };
19 | module.exports = NodeBufferReader;
20 |
--------------------------------------------------------------------------------
/public/css/product/vendors/jszip/lib/reader/Uint8ArrayReader.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ArrayReader = require('./ArrayReader');
3 | var utils = require('../utils');
4 |
5 | function Uint8ArrayReader(data) {
6 | ArrayReader.call(this, data);
7 | }
8 | utils.inherits(Uint8ArrayReader, ArrayReader);
9 | /**
10 | * @see DataReader.readData
11 | */
12 | Uint8ArrayReader.prototype.readData = function(size) {
13 | this.checkOffset(size);
14 | if(size === 0) {
15 | // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of [].
16 | return new Uint8Array(0);
17 | }
18 | var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size);
19 | this.index += size;
20 | return result;
21 | };
22 | module.exports = Uint8ArrayReader;
23 |
--------------------------------------------------------------------------------
/public/css/product/vendors/jszip/lib/signature.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | exports.LOCAL_FILE_HEADER = "PK\x03\x04";
3 | exports.CENTRAL_FILE_HEADER = "PK\x01\x02";
4 | exports.CENTRAL_DIRECTORY_END = "PK\x05\x06";
5 | exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07";
6 | exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06";
7 | exports.DATA_DESCRIPTOR = "PK\x07\x08";
8 |
--------------------------------------------------------------------------------
/public/css/product/vendors/jszip/lib/stream/ConvertWorker.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | var GenericWorker = require('./GenericWorker');
4 | var utils = require('../utils');
5 |
6 | /**
7 | * A worker which convert chunks to a specified type.
8 | * @constructor
9 | * @param {String} destType the destination type.
10 | */
11 | function ConvertWorker(destType) {
12 | GenericWorker.call(this, "ConvertWorker to " + destType);
13 | this.destType = destType;
14 | }
15 | utils.inherits(ConvertWorker, GenericWorker);
16 |
17 | /**
18 | * @see GenericWorker.processChunk
19 | */
20 | ConvertWorker.prototype.processChunk = function (chunk) {
21 | this.push({
22 | data : utils.transformTo(this.destType, chunk.data),
23 | meta : chunk.meta
24 | });
25 | };
26 | module.exports = ConvertWorker;
27 |
--------------------------------------------------------------------------------
/public/css/product/vendors/jszip/lib/stream/Crc32Probe.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | var GenericWorker = require('./GenericWorker');
4 | var crc32 = require('../crc32');
5 | var utils = require('../utils');
6 |
7 | /**
8 | * A worker which calculate the crc32 of the data flowing through.
9 | * @constructor
10 | */
11 | function Crc32Probe() {
12 | GenericWorker.call(this, "Crc32Probe");
13 | this.withStreamInfo("crc32", 0);
14 | }
15 | utils.inherits(Crc32Probe, GenericWorker);
16 |
17 | /**
18 | * @see GenericWorker.processChunk
19 | */
20 | Crc32Probe.prototype.processChunk = function (chunk) {
21 | this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0);
22 | this.push(chunk);
23 | };
24 | module.exports = Crc32Probe;
25 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "popper.js",
3 | "description": "A kickass library to manage your poppers",
4 | "main": "dist/umd/popper.js",
5 | "authors": [
6 | "Contributors (https://github.com/FezVrasta/popper.js/graphs/contributors)"
7 | ],
8 | "license": "MIT",
9 | "keywords": [
10 | "popperjs",
11 | "component",
12 | "drop",
13 | "tooltip",
14 | "popover",
15 | "position",
16 | "attached"
17 | ],
18 | "homepage": "https://popper.js.org",
19 | "ignore": [
20 | "**/.*",
21 | "node_modules",
22 | "bower_components",
23 | "tests"
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/CNAME:
--------------------------------------------------------------------------------
1 | popper.js.org
2 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example10-code.html:
--------------------------------------------------------------------------------
1 | Popper on your side!
2 |
3 | What are you waiting for? Select a popper from that dropdown.
4 | Placing poppers around elements is just that easy!
5 |
6 |
7 |
8 | {% highlight javascript %}
9 | var popper = new Popper(referenceElement, onPopper, {
10 | placement: 'position'
11 | });
12 | {% endhighlight %}
13 |
14 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example10t-code.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | The available placements are the same you are used to with Popper.js:
4 |
5 |
6 |
7 | {% highlight javascript %}
8 | new Tooltip(referenceElement, {
9 | placement: 'top', // or bottom, left, right, and variations
10 | title: "Top"
11 | });
12 | {% endhighlight %}
13 |
14 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example20-code.html:
--------------------------------------------------------------------------------
1 | Custom flip behavior
2 |
3 | Try dragging the reference element on the left side, its popper will move on its bottom edge.
4 | Then, try to move the reference element on the bottom left corner, it will move on its top edge.
5 |
6 | {% highlight javascript %}
7 | var popper = new Popper(referenceElement, onLeftPopper, {
8 | placement: 'left',
9 | modifiers: {
10 | flip: {
11 | behavior: ['left', 'bottom', 'top']
12 | },
13 | preventOverflow: {
14 | boundariesElement: container,
15 | },
16 | },
17 | });
18 | {% endhighlight %}
19 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example20t-code.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | You can show, hide or toggle a tooltip programmatically:
4 |
5 |
6 |
7 | {% highlight javascript %}
8 | const instance = new Tooltip(referenceElement, {
9 | title: "Hey there",
10 | trigger: "click",
11 | });
12 | instance.show();
13 | {% endhighlight %}
14 |
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example20t.html:
--------------------------------------------------------------------------------
1 |
2 |
Manually triggered
3 |
4 |
5 |
19 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example30-code.html:
--------------------------------------------------------------------------------
1 | Popper on scrolling container
2 |
3 | In this example we have a relative div which contains a div with overflow: scroll
.
4 | Inside it, there are our popper and reference elements.
5 |
6 | {% highlight javascript %}
7 | var popper = new Popper(referenceElement, onLeftPopper, {
8 | placement: 'left',
9 | });
10 | {% endhighlight %}
11 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example40-code.html:
--------------------------------------------------------------------------------
1 | Shifted poppers
2 |
3 | Shift your poppers on start or end of its reference element side.
4 |
5 |
6 | {% highlight javascript %}
7 | var shiftStart = new Popper(referenceElement, shiftStartPopper, {
8 | placement: 'left-start',
9 | });
10 |
11 | var shiftEnd = new Popper(referenceElement, shiftEndPopper, {
12 | placement: 'bottom-end',
13 | });
14 | {% endhighlight %}
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example50-code.html:
--------------------------------------------------------------------------------
1 | Viewport boundaries
2 |
3 | By default, poppers use as boundaries the page viewport.
4 | Scroll the page to see the popper flip when hits the page viewport margins.
5 |
6 |
7 | {% highlight javascript %}
8 | var popper = new Popper(referenceElement, onBottomPopper, {
9 | placement: 'bottom'
10 | });
11 | {% endhighlight %}
12 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_includes/example50.html:
--------------------------------------------------------------------------------
1 |
2 |
Pop
3 |
on the bottom
4 |
5 |
6 |
7 |
Popper on bottom
8 |
Flips when hits viewport
9 |
10 |
11 |
12 |
19 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 | {% include head.html %}
11 |
12 |
13 |
14 |
15 |
16 |
17 | {% include header.html %}
18 |
19 | {{ content }}
20 |
21 | {% include footer.html %}
22 |
23 | {% include scripts.html %}
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_layouts/landing.html:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 | {% include head.html %}
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | {% include header.html %}
19 |
20 | {{ content }}
21 |
22 | {% include footer.html %}
23 |
24 | {% include scripts.html %}
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_layouts/page-hashtag.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 |
7 | #{{ page.title }}
8 | {{ page.description }}
9 |
10 |
11 |
12 |
13 | {{ content }}
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_layouts/page-nowrap.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 |
7 | {{ page.title }}
8 | {{ page.description }}
9 |
10 |
11 | {{ content }}
12 |
13 |
14 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/_layouts/page.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 |
7 | {{ page.title }}
8 | {{ page.description }}
9 |
10 |
11 |
12 |
13 | {{ content }}
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/css/images/arrow.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/css/images/bars.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/css/images/close.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/documentation.html:
--------------------------------------------------------------------------------
1 |
2 | Moved
3 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/favicon-16x16.png
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/favicon-32x32.png
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/favicon-96x96.png
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/favicon.ico
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/banner.jpg
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/banner.png
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/logo.png
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/pic01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/pic01.jpg
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/pic02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/pic02.jpg
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/pic03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/pic03.jpg
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/pic04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/pic04.jpg
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/images/pic05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/docs/images/pic05.jpg
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/popper-documentation.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Popper.js Documentation
4 | description: Learn how to create awesome poppers
5 | ---
6 |
7 |
8 | {% capture documentation %}
9 | {% include popper-documentation.md %}
10 | {% endcapture %}
11 | {{
12 | documentation | markdownify
13 | }}
14 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/docs/tooltip-documentation.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Tooltip.js Documentation
4 | description: Learn how to create awesome tooltips
5 | ---
6 |
7 |
8 |
9 | {% capture documentation %}
10 | {% include tooltip-documentation.md %}
11 | {% endcapture %}
12 | {{
13 | documentation | markdownify
14 | }}
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/lerna.json:
--------------------------------------------------------------------------------
1 | {
2 | "lerna": "2.0.0",
3 | "packages": [
4 | "packages/*"
5 | ],
6 | "version": "0.0.0",
7 | "npmClient": "yarn",
8 | "commands": {
9 | "run": {
10 | "ignore": "\\@popperjs/*"
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/babel-config/index.js:
--------------------------------------------------------------------------------
1 | const env = require.resolve('babel-preset-env');
2 | const stage2 = require.resolve('babel-preset-stage-2');
3 | const externalHelpers = require.resolve('babel-plugin-external-helpers');
4 |
5 | module.exports = {
6 | es5: {
7 | presets: [
8 | [
9 | env,
10 | {
11 | targets: {
12 | browsers: ['last 2 versions', 'ie >= 10'],
13 | },
14 | modules: false,
15 | },
16 | ],
17 | stage2,
18 | ],
19 | plugins: [externalHelpers],
20 | },
21 | es6: {
22 | presets: [stage2],
23 | plugins: [externalHelpers],
24 | },
25 | };
26 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/babel-config/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@popperjs/babel-config",
3 | "version": "1.0.0",
4 | "main": "index.js",
5 | "author": "Federico Zivolo ",
6 | "license": "MIT",
7 | "dependencies": {
8 | "babel-plugin-external-helpers": "^6.22.0",
9 | "babel-preset-env": "^1.5.2",
10 | "babel-preset-stage-2": "^6.24.1"
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/bundle/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@popperjs/bundle",
3 | "version": "1.0.2",
4 | "main": "index.js",
5 | "author": "Federico Zivolo ",
6 | "license": "MIT",
7 | "dependencies": {
8 | "@popperjs/babel-config": "^1.0.0",
9 | "rimraf": "^2.6.2",
10 | "rollup": "^0.51.5",
11 | "rollup-plugin-babel": "^2.7.1",
12 | "rollup-plugin-babel-minify": "^3.1.2",
13 | "yargs": "^10.0.3"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/eslint-config-popper/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@popperjs/eslint-config-popper",
3 | "version": "1.0.0",
4 | "private": true,
5 | "description": "Popper.js ESLint config",
6 | "main": "index.js",
7 | "scripts": {
8 | "test": "exit 0"
9 | },
10 | "author": "Federico Zivolo ",
11 | "license": "MIT",
12 | "dependencies": {
13 | "babel-eslint": "^7.2.3"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "popper.js",
3 | "description": "A kickass library to manage your poppers",
4 | "main": "dist/umd/popper.js",
5 | "authors": [
6 | "Contributors (https://github.com/FezVrasta/popper.js/graphs/contributors)"
7 | ],
8 | "license": "MIT",
9 | "keywords": [
10 | "popperjs",
11 | "component",
12 | "drop",
13 | "tooltip",
14 | "popover",
15 | "position",
16 | "attached"
17 | ],
18 | "homepage": "https://popper.js.org",
19 | "ignore": [
20 | "**/.*",
21 | "node_modules",
22 | "bower_components",
23 | "tests"
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/methods/disableEventListeners.js:
--------------------------------------------------------------------------------
1 | import removeEventListeners from '../utils/removeEventListeners';
2 |
3 | /**
4 | * It will remove resize/scroll events and won't recalculate popper position
5 | * when they are triggered. It also won't trigger `onUpdate` callback anymore,
6 | * unless you call `update` method manually.
7 | * @method
8 | * @memberof Popper
9 | */
10 | export default function disableEventListeners() {
11 | if (this.state.eventsEnabled) {
12 | cancelAnimationFrame(this.scheduleUpdate);
13 | this.state = removeEventListeners(this.reference, this.state);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/methods/enableEventListeners.js:
--------------------------------------------------------------------------------
1 | import setupEventListeners from '../utils/setupEventListeners';
2 |
3 | /**
4 | * It will add resize/scroll events and start recalculating
5 | * position of the popper element when they are triggered.
6 | * @method
7 | * @memberof Popper
8 | */
9 | export default function enableEventListeners() {
10 | if (!this.state.eventsEnabled) {
11 | this.state = setupEventListeners(
12 | this.reference,
13 | this.options,
14 | this.state,
15 | this.scheduleUpdate
16 | );
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/find.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Mimics the `find` method of Array
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Array} arr
6 | * @argument prop
7 | * @argument value
8 | * @returns index or -1
9 | */
10 | export default function find(arr, check) {
11 | // use native find if supported
12 | if (Array.prototype.find) {
13 | return arr.find(check);
14 | }
15 |
16 | // use `filter` to obtain the same behavior of `find`
17 | return arr.filter(check)[0];
18 | }
19 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/findIndex.js:
--------------------------------------------------------------------------------
1 | import find from './find';
2 |
3 | /**
4 | * Return the index of the matching object
5 | * @method
6 | * @memberof Popper.Utils
7 | * @argument {Array} arr
8 | * @argument prop
9 | * @argument value
10 | * @returns index or -1
11 | */
12 | export default function findIndex(arr, prop, value) {
13 | // use native findIndex if supported
14 | if (Array.prototype.findIndex) {
15 | return arr.findIndex(cur => cur[prop] === value);
16 | }
17 |
18 | // use `find` + `indexOf` if `findIndex` isn't supported
19 | const match = find(arr, obj => obj[prop] === value);
20 | return arr.indexOf(match);
21 | }
22 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getBordersSize.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Helper to detect borders of a given element
3 | * @method
4 | * @memberof Popper.Utils
5 | * @param {CSSStyleDeclaration} styles
6 | * Result of `getStyleComputedProperty` on the given element
7 | * @param {String} axis - `x` or `y`
8 | * @return {number} borders - The borders size of the given axis
9 | */
10 |
11 | export default function getBordersSize(styles, axis) {
12 | const sideA = axis === 'x' ? 'Left' : 'Top';
13 | const sideB = sideA === 'Left' ? 'Right' : 'Bottom';
14 |
15 | return (
16 | parseFloat(styles[`border${sideA}Width`], 10) +
17 | parseFloat(styles[`border${sideB}Width`], 10)
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getClientRect.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Given element offsets, generate an output similar to getBoundingClientRect
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Object} offsets
6 | * @returns {Object} ClientRect like output
7 | */
8 | export default function getClientRect(offsets) {
9 | return {
10 | ...offsets,
11 | right: offsets.left + offsets.width,
12 | bottom: offsets.top + offsets.height,
13 | };
14 | }
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getOppositePlacement.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Get the opposite placement of the given one
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {String} placement
6 | * @returns {String} flipped placement
7 | */
8 | export default function getOppositePlacement(placement) {
9 | const hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };
10 | return placement.replace(/left|right|bottom|top/g, matched => hash[matched]);
11 | }
12 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getOppositeVariation.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Get the opposite placement variation of the given one
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {String} placement variation
6 | * @returns {String} flipped placement variation
7 | */
8 | export default function getOppositeVariation(variation) {
9 | if (variation === 'end') {
10 | return 'start';
11 | } else if (variation === 'start') {
12 | return 'end';
13 | }
14 | return variation;
15 | }
16 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getOuterSizes.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Get the outer sizes of the given element (offset size + margins)
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Element} element
6 | * @returns {Object} object containing width and height properties
7 | */
8 | export default function getOuterSizes(element) {
9 | const styles = getComputedStyle(element);
10 | const x = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);
11 | const y = parseFloat(styles.marginLeft) + parseFloat(styles.marginRight);
12 | const result = {
13 | width: element.offsetWidth + y,
14 | height: element.offsetHeight + x,
15 | };
16 | return result;
17 | }
18 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getParentNode.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Returns the parentNode or the host of the element
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Element} element
6 | * @returns {Element} parent
7 | */
8 | export default function getParentNode(element) {
9 | if (element.nodeName === 'HTML') {
10 | return element;
11 | }
12 | return element.parentNode || element.host;
13 | }
14 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getRoot.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Finds the root node (document, shadowDOM root) of the given element
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Element} node
6 | * @returns {Element} root node
7 | */
8 | export default function getRoot(node) {
9 | if (node.parentNode !== null) {
10 | return getRoot(node.parentNode);
11 | }
12 |
13 | return node;
14 | }
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getScroll.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Gets the scroll value of the given element in the given side (top and left)
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Element} element
6 | * @argument {String} side `top` or `left`
7 | * @returns {number} amount of scrolled pixels
8 | */
9 | export default function getScroll(element, side = 'top') {
10 | const upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';
11 | const nodeName = element.nodeName;
12 |
13 | if (nodeName === 'BODY' || nodeName === 'HTML') {
14 | const html = element.ownerDocument.documentElement;
15 | const scrollingElement = element.ownerDocument.scrollingElement || html;
16 | return scrollingElement[upperSide];
17 | }
18 |
19 | return element[upperSide];
20 | }
21 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getStyleComputedProperty.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Get CSS computed property of the given element
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Eement} element
6 | * @argument {String} property
7 | */
8 | export default function getStyleComputedProperty(element, property) {
9 | if (element.nodeType !== 1) {
10 | return [];
11 | }
12 | // NOTE: 1 DOM access here
13 | const css = getComputedStyle(element, null);
14 | return property ? css[property] : css;
15 | }
16 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getSupportedPropertyName.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Get the prefixed supported property name
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {String} property (camelCase)
6 | * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)
7 | */
8 | export default function getSupportedPropertyName(property) {
9 | const prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];
10 | const upperProp = property.charAt(0).toUpperCase() + property.slice(1);
11 |
12 | for (let i = 0; i < prefixes.length; i++) {
13 | const prefix = prefixes[i];
14 | const toCheck = prefix ? `${prefix}${upperProp}` : property;
15 | if (typeof document.body.style[toCheck] !== 'undefined') {
16 | return toCheck;
17 | }
18 | }
19 | return null;
20 | }
21 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/getWindow.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Get the window associated with the element
3 | * @argument {Element} element
4 | * @returns {Window}
5 | */
6 | export default function getWindow(element) {
7 | const ownerDocument = element.ownerDocument;
8 | return ownerDocument ? ownerDocument.defaultView : window;
9 | }
10 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isBrowser.js:
--------------------------------------------------------------------------------
1 | export default typeof window !== 'undefined' && typeof document !== 'undefined';
2 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isFixed.js:
--------------------------------------------------------------------------------
1 | import getStyleComputedProperty from './getStyleComputedProperty';
2 | import getParentNode from './getParentNode';
3 |
4 | /**
5 | * Check if the given element is fixed or is inside a fixed parent
6 | * @method
7 | * @memberof Popper.Utils
8 | * @argument {Element} element
9 | * @argument {Element} customContainer
10 | * @returns {Boolean} answer to "isFixed?"
11 | */
12 | export default function isFixed(element) {
13 | const nodeName = element.nodeName;
14 | if (nodeName === 'BODY' || nodeName === 'HTML') {
15 | return false;
16 | }
17 | if (getStyleComputedProperty(element, 'position') === 'fixed') {
18 | return true;
19 | }
20 | return isFixed(getParentNode(element));
21 | }
22 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isFunction.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Check if the given variable is a function
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Any} functionToCheck - variable to check
6 | * @returns {Boolean} answer to: is a function?
7 | */
8 | export default function isFunction(functionToCheck) {
9 | const getType = {};
10 | return (
11 | functionToCheck &&
12 | getType.toString.call(functionToCheck) === '[object Function]'
13 | );
14 | }
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isIE.js:
--------------------------------------------------------------------------------
1 | import isBrowser from './isBrowser';
2 |
3 | const isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);
4 | const isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);
5 |
6 | /**
7 | * Determines if the browser is Internet Explorer
8 | * @method
9 | * @memberof Popper.Utils
10 | * @param {Number} version to check
11 | * @returns {Boolean} isIE
12 | */
13 | export default function isIE(version) {
14 | if (version === 11) {
15 | return isIE11;
16 | }
17 | if (version === 10) {
18 | return isIE10;
19 | }
20 | return isIE11 || isIE10;
21 | }
22 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isModifierEnabled.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Helper used to know if the given modifier is enabled.
3 | * @method
4 | * @memberof Popper.Utils
5 | * @returns {Boolean}
6 | */
7 | export default function isModifierEnabled(modifiers, modifierName) {
8 | return modifiers.some(
9 | ({ name, enabled }) => enabled && name === modifierName
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isNumeric.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Tells if a given input is a number
3 | * @method
4 | * @memberof Popper.Utils
5 | * @param {*} input to check
6 | * @return {Boolean}
7 | */
8 | export default function isNumeric(n) {
9 | return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);
10 | }
11 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/isOffsetContainer.js:
--------------------------------------------------------------------------------
1 | import getOffsetParent from './getOffsetParent';
2 |
3 | export default function isOffsetContainer(element) {
4 | const { nodeName } = element;
5 | if (nodeName === 'BODY') {
6 | return false;
7 | }
8 | return (
9 | nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/removeEventListeners.js:
--------------------------------------------------------------------------------
1 | import getWindow from './getWindow';
2 |
3 | /**
4 | * Remove event listeners used to update the popper position
5 | * @method
6 | * @memberof Popper.Utils
7 | * @private
8 | */
9 | export default function removeEventListeners(reference, state) {
10 | // Remove resize event listener on window
11 | getWindow(reference).removeEventListener('resize', state.updateBound);
12 |
13 | // Remove scroll event listener on scroll parents
14 | state.scrollParents.forEach(target => {
15 | target.removeEventListener('scroll', state.updateBound);
16 | });
17 |
18 | // Reset state
19 | state.updateBound = null;
20 | state.scrollParents = [];
21 | state.scrollElement = null;
22 | state.eventsEnabled = false;
23 | return state;
24 | }
25 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/setAttributes.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Set the attributes to the given popper
3 | * @method
4 | * @memberof Popper.Utils
5 | * @argument {Element} element - Element to apply the attributes to
6 | * @argument {Object} styles
7 | * Object with a list of properties and values which will be applied to the element
8 | */
9 | export default function setAttributes(element, attributes) {
10 | Object.keys(attributes).forEach(function(prop) {
11 | const value = attributes[prop];
12 | if (value !== false) {
13 | element.setAttribute(prop, attributes[prop]);
14 | } else {
15 | element.removeAttribute(prop);
16 | }
17 | });
18 | }
19 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/popper/src/utils/setStyles.js:
--------------------------------------------------------------------------------
1 | import isNumeric from './isNumeric';
2 |
3 | /**
4 | * Set the style to the given popper
5 | * @method
6 | * @memberof Popper.Utils
7 | * @argument {Element} element - Element to apply the style to
8 | * @argument {Object} styles
9 | * Object with a list of properties and values which will be applied to the element
10 | */
11 | export default function setStyles(element, styles) {
12 | Object.keys(styles).forEach(prop => {
13 | let unit = '';
14 | // add unit if the value is numeric and is one of the following
15 | if (
16 | ['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !==
17 | -1 &&
18 | isNumeric(styles[prop])
19 | ) {
20 | unit = 'px';
21 | }
22 | element.style[prop] = styles[prop] + unit;
23 | });
24 | }
25 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@popperjs/test-utils",
3 | "version": "1.0.0",
4 | "main": "setup.js",
5 | "description": "Test utils for Popper.js tests",
6 | "author": "Federico Zivolo ",
7 | "license": "MIT",
8 | "scripts": {
9 | "test": "exit 0"
10 | },
11 | "dependencies": {
12 | "babel-eslint": "^7.2.3",
13 | "eslint-plugin-jasmine": "^2.6.2"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/appendNewPopper.js:
--------------------------------------------------------------------------------
1 | export default function appendNewPopper(id, text, container) {
2 | const jasmineWrapper = document.getElementById('jasmineWrapper');
3 |
4 | const popper = document.createElement('div');
5 | popper.id = id;
6 | popper.className = 'popper';
7 | popper.textContent = text || 'popper';
8 | const arrow = document.createElement('div');
9 | arrow.className = 'popper__arrow';
10 | arrow.setAttribute('x-arrow', '');
11 | popper.appendChild(arrow);
12 | (container || jasmineWrapper).appendChild(popper);
13 | return popper;
14 | }
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/appendNewRef.js:
--------------------------------------------------------------------------------
1 | export default function appendNewRef(id, text, container) {
2 | const jasmineWrapper = document.getElementById('jasmineWrapper');
3 |
4 | const ref = document.createElement('div');
5 | ref.id = id;
6 | ref.className = 'ref';
7 | ref.textContent = text || 'reference';
8 | (container || jasmineWrapper).appendChild(ref);
9 | return ref;
10 | }
11 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/customEventPolyfill.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | if (typeof window.CustomEvent === 'function') {
3 | return false;
4 | }
5 |
6 | function CustomEvent(event, params) {
7 | params = params || { bubbles: false, cancelable: false, detail: undefined };
8 | const evt = document.createEvent('CustomEvent');
9 | evt.initCustomEvent(
10 | event,
11 | params.bubbles,
12 | params.cancelable,
13 | params.detail
14 | );
15 | return evt;
16 | }
17 |
18 | CustomEvent.prototype = window.Event.prototype;
19 |
20 | window.CustomEvent = CustomEvent;
21 | })();
22 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/getRect.js:
--------------------------------------------------------------------------------
1 | export default function getRect(element) {
2 | return element.getBoundingClientRect();
3 | }
4 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/makeConnectedElement.js:
--------------------------------------------------------------------------------
1 | import makeElement from './makeElement';
2 |
3 | /**
4 | * Create an element that's connected to the DOM.
5 | */
6 | export default function makeConnectedElement() {
7 | const jasmineWrapper = document.getElementById('jasmineWrapper');
8 | return jasmineWrapper.appendChild(makeElement());
9 | }
10 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/makeConnectedScrollElement.js:
--------------------------------------------------------------------------------
1 | import makeConnectedElement from './makeConnectedElement';
2 |
3 | /**
4 | * Create a scrollable element that's connected to the DOM.
5 | */
6 | export default function makeConnectedScrollElement() {
7 | const elem = makeConnectedElement();
8 | elem.style.overflow = 'scroll';
9 | return elem;
10 | }
11 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/makeElement.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Create an element.
3 | */
4 | export default function makeElement() {
5 | return document.createElement('div');
6 | }
7 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/prepend.js:
--------------------------------------------------------------------------------
1 | export default function prepend(node, parent) {
2 | parent.insertBefore(node, parent.firstChild);
3 | }
4 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/simulateScroll.js:
--------------------------------------------------------------------------------
1 | export default function simulateScroll(
2 | element,
3 | { scrollTop, scrollLeft, delay }
4 | ) {
5 | const scrollingElement = element === document.body
6 | ? document.scrollingElement || document.documentElement
7 | : element;
8 |
9 | const applyScroll = () => {
10 | if (scrollTop !== undefined) {
11 | scrollingElement.scrollTop = scrollTop;
12 | }
13 | if (scrollLeft !== undefined) {
14 | scrollingElement.scrollLeft = scrollLeft;
15 | }
16 | };
17 |
18 | if (delay !== undefined) {
19 | setTimeout(applyScroll, delay);
20 | } else {
21 | applyScroll();
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test-utils/utils/then.js:
--------------------------------------------------------------------------------
1 | export default function then(callback, delay = 100) {
2 | setTimeout(callback, jasmine.THEN_DELAY);
3 | jasmine.THEN_DELAY += delay;
4 | }
5 |
6 | beforeEach(() => (jasmine.THEN_DELAY = 0));
7 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test/README.md:
--------------------------------------------------------------------------------
1 | # Popper.js scripts
2 |
3 | This package is a list of scripts used by Popper.js and Tooltip.js to
4 | test the packages.
5 |
6 | It's not intended to be used outside of Popper.js repository.
7 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/packages/test/bin/karma.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | const path = require('path');
3 | const { Server, config } = require('karma');
4 |
5 | const karmaConfig = config.parseConfig(
6 | path.resolve(__dirname, '../karma.conf.js')
7 | );
8 |
9 | const server = new Server(karmaConfig, exitCode => {
10 | console.log('Karma has exited with ' + exitCode);
11 | process.exit(exitCode);
12 | });
13 |
14 | server.start();
15 |
--------------------------------------------------------------------------------
/public/css/product/vendors/popper.js/popperjs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/product/vendors/popper.js/popperjs.png
--------------------------------------------------------------------------------
/public/css/supplier/lib/chosen/chosen-sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/supplier/lib/chosen/chosen-sprite.png
--------------------------------------------------------------------------------
/public/css/supplier/lib/chosen/chosen-sprite@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/css/supplier/lib/chosen/chosen-sprite@2x.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/favicon.ico
--------------------------------------------------------------------------------
/public/images/admin/doctor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/admin/doctor.jpg
--------------------------------------------------------------------------------
/public/images/dashboardIMG/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/dashboardIMG/bg.png
--------------------------------------------------------------------------------
/public/images/dashboardIMG/reload.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/dashboardIMG/reload.gif
--------------------------------------------------------------------------------
/public/images/dashboardIMG/shantha.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/dashboardIMG/shantha.jpg
--------------------------------------------------------------------------------
/public/images/dashboardIMG/sidebar-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/dashboardIMG/sidebar-1.jpg
--------------------------------------------------------------------------------
/public/images/doc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/doc.png
--------------------------------------------------------------------------------
/public/images/main/index/bg_doctor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/index/bg_doctor.jpg
--------------------------------------------------------------------------------
/public/images/main/index/child.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/index/child.jpg
--------------------------------------------------------------------------------
/public/images/main/index/doctor_group.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/index/doctor_group.jpg
--------------------------------------------------------------------------------
/public/images/main/index/facts-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/index/facts-bg.jpg
--------------------------------------------------------------------------------
/public/images/main/login/welcome_image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/login/welcome_image.jpg
--------------------------------------------------------------------------------
/public/images/main/mainlayout/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/favicon.ico
--------------------------------------------------------------------------------
/public/images/main/mainlayout/footer-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/footer-bg.jpg
--------------------------------------------------------------------------------
/public/images/main/mainlayout/icons/calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/icons/calendar.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/icons/clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/icons/clock.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/icons/map-marker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/icons/map-marker.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/icons/phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/icons/phone.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/icons/rignt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/icons/rignt.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/logo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/logo_dark.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/logo_dark_long.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/logo_dark_long.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/logo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/logo_light.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/logo_light_long.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/logo_light_long.png
--------------------------------------------------------------------------------
/public/images/main/mainlayout/page-info-bg/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/page-info-bg/1.jpg
--------------------------------------------------------------------------------
/public/images/main/mainlayout/page-info-bg/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/page-info-bg/2.jpg
--------------------------------------------------------------------------------
/public/images/main/mainlayout/page-info-bg/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/main/mainlayout/page-info-bg/3.jpg
--------------------------------------------------------------------------------
/public/images/product/01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/product/01.jpg
--------------------------------------------------------------------------------
/public/images/product/011.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/product/011.jpg
--------------------------------------------------------------------------------
/public/images/product/exp.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/product/exp.gif
--------------------------------------------------------------------------------
/public/images/product/submit1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/product/submit1.png
--------------------------------------------------------------------------------
/public/images/registerIMG/form-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/registerIMG/form-img.jpg
--------------------------------------------------------------------------------
/public/images/searchIMG/date.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/searchIMG/date.png
--------------------------------------------------------------------------------
/public/images/searchIMG/doctor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/searchIMG/doctor.jpg
--------------------------------------------------------------------------------
/public/images/searchIMG/doctor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/searchIMG/doctor.png
--------------------------------------------------------------------------------
/public/images/searchIMG/hospital.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/searchIMG/hospital.png
--------------------------------------------------------------------------------
/public/images/searchIMG/spec.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/images/searchIMG/spec.png
--------------------------------------------------------------------------------
/public/img/24-hours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/24-hours.png
--------------------------------------------------------------------------------
/public/img/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/Thumbs.db
--------------------------------------------------------------------------------
/public/img/about-us.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/about-us.png
--------------------------------------------------------------------------------
/public/img/adhome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/adhome.png
--------------------------------------------------------------------------------
/public/img/adminanalytics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/adminanalytics.png
--------------------------------------------------------------------------------
/public/img/adminchart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/adminchart.png
--------------------------------------------------------------------------------
/public/img/adminshopping.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/adminshopping.png
--------------------------------------------------------------------------------
/public/img/adminuser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/adminuser.png
--------------------------------------------------------------------------------
/public/img/amb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/amb.jpg
--------------------------------------------------------------------------------
/public/img/body-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/body-bg.png
--------------------------------------------------------------------------------
/public/img/card.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/card.jpg
--------------------------------------------------------------------------------
/public/img/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/close.png
--------------------------------------------------------------------------------
/public/img/contact-shepe-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/contact-shepe-white.png
--------------------------------------------------------------------------------
/public/img/development-shepe-blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/development-shepe-blue.png
--------------------------------------------------------------------------------
/public/img/development-shepe-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/development-shepe-white.png
--------------------------------------------------------------------------------
/public/img/dia.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/dia.jpg
--------------------------------------------------------------------------------
/public/img/doctors.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/doctors.jpg
--------------------------------------------------------------------------------
/public/img/emg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/emg.jpg
--------------------------------------------------------------------------------
/public/img/footer-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/footer-bg.jpg
--------------------------------------------------------------------------------
/public/img/gallery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/gallery.png
--------------------------------------------------------------------------------
/public/img/glyphicons-halflings-white.html:
--------------------------------------------------------------------------------
1 |
2 | 404 Not Found
3 |
4 | 404 Not Found
5 | nginx
6 |
7 |
8 |
--------------------------------------------------------------------------------
/public/img/glyphicons-halflings.html:
--------------------------------------------------------------------------------
1 |
2 | 404 Not Found
3 |
4 | 404 Not Found
5 | nginx
6 |
7 |
8 |
--------------------------------------------------------------------------------
/public/img/header-shepe-blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/header-shepe-blue.png
--------------------------------------------------------------------------------
/public/img/header-shepe-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/header-shepe-white.png
--------------------------------------------------------------------------------
/public/img/heading_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/heading_bg.png
--------------------------------------------------------------------------------
/public/img/highway-loop.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/highway-loop.mp4
--------------------------------------------------------------------------------
/public/img/icons-sa7c41345d9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/icons-sa7c41345d9.png
--------------------------------------------------------------------------------
/public/img/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/loading.gif
--------------------------------------------------------------------------------
/public/img/message_avatar1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/message_avatar1.png
--------------------------------------------------------------------------------
/public/img/message_avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/message_avatar2.png
--------------------------------------------------------------------------------
/public/img/newspaper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/newspaper.png
--------------------------------------------------------------------------------
/public/img/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/next.png
--------------------------------------------------------------------------------
/public/img/opinion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/opinion.png
--------------------------------------------------------------------------------
/public/img/portfolio-image1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio-image1.jpg
--------------------------------------------------------------------------------
/public/img/portfolio-image2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio-image2.jpg
--------------------------------------------------------------------------------
/public/img/portfolio-image3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio-image3.jpg
--------------------------------------------------------------------------------
/public/img/portfolio-image4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio-image4.jpg
--------------------------------------------------------------------------------
/public/img/portfolio-image5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio-image5.jpg
--------------------------------------------------------------------------------
/public/img/portfolio-image6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio-image6.jpg
--------------------------------------------------------------------------------
/public/img/portfolio_item_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_1.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_2.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_3.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_4.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_5.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_6.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_7.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_8.png
--------------------------------------------------------------------------------
/public/img/portfolio_item_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/portfolio_item_9.png
--------------------------------------------------------------------------------
/public/img/prev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/prev.png
--------------------------------------------------------------------------------
/public/img/scan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/scan.jpg
--------------------------------------------------------------------------------
/public/img/scroll-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/scroll-icon.png
--------------------------------------------------------------------------------
/public/img/shepe1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/shepe1.png
--------------------------------------------------------------------------------
/public/img/shepe2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/shepe2.png
--------------------------------------------------------------------------------
/public/img/shepe3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/shepe3.png
--------------------------------------------------------------------------------
/public/img/shepe4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/shepe4.png
--------------------------------------------------------------------------------
/public/img/sleep.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/sleep.jpg
--------------------------------------------------------------------------------
/public/img/team-member1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/team-member1.png
--------------------------------------------------------------------------------
/public/img/team-member2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/team-member2.png
--------------------------------------------------------------------------------
/public/img/team-member3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/team-member3.png
--------------------------------------------------------------------------------
/public/img/works-area-images.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/works-area-images.jpg
--------------------------------------------------------------------------------
/public/img/xray.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/public/img/xray.jpg
--------------------------------------------------------------------------------
/public/js/base.js:
--------------------------------------------------------------------------------
1 | $(function () {
2 |
3 |
4 | $('.subnavbar').find ('li').each (function (i) {
5 |
6 | var mod = i % 3;
7 |
8 | if (mod === 2) {
9 | $(this).addClass ('subnavbar-open-right');
10 | }
11 |
12 | });
13 |
14 |
15 |
16 | });
--------------------------------------------------------------------------------
/public/js/charts/donut.js:
--------------------------------------------------------------------------------
1 | $(function () {
2 |
3 | var data = [];
4 | var series = 3;
5 | for( var i = 0; i 'These credentials do not match our records.',
17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/sass/_variables.scss:
--------------------------------------------------------------------------------
1 | // Body
2 | $body-bg: #f8fafc;
3 |
4 | // Typography
5 | $font-family-sans-serif: 'Nunito', sans-serif;
6 | $font-size-base: 0.9rem;
7 | $line-height-base: 1.6;
8 |
9 | // Colors
10 | $blue: #3490dc;
11 | $indigo: #6574cd;
12 | $purple: #9561e2;
13 | $pink: #f66d9b;
14 | $red: #e3342f;
15 | $orange: #f6993f;
16 | $yellow: #ffed4a;
17 | $green: #38c172;
18 | $teal: #4dc0b5;
19 | $cyan: #6cb2eb;
20 |
--------------------------------------------------------------------------------
/resources/sass/app.scss:
--------------------------------------------------------------------------------
1 | // Fonts
2 | @import url('https://fonts.googleapis.com/css?family=Nunito');
3 |
4 | // Variables
5 | @import 'variables';
6 |
7 | // Bootstrap
8 | @import '~bootstrap/scss/bootstrap';
9 |
--------------------------------------------------------------------------------
/resources/views/backend/supplier/nav.blade.php:
--------------------------------------------------------------------------------
1 | @section('nav-items')
2 | Dashboard
3 | Create New Supplier
4 | Generate Report
5 | @endsection
--------------------------------------------------------------------------------
/resources/views/backend/supplier/reports.blade.php:
--------------------------------------------------------------------------------
1 | {{-- add a custom css file just for this page --}}
2 |
3 |
4 | @extends('backend.layout', compact('styles'))
5 |
6 | @section('title', 'Supplier Manager')
7 |
8 | @include('backend.supplier.nav')
9 |
10 |
11 | @section('content')
12 |
13 |
14 |
15 | @endsection
--------------------------------------------------------------------------------
/resources/views/chairman/nav.blade.php:
--------------------------------------------------------------------------------
1 | @section('nav-items')
2 | Dashboard
3 | @endsection
--------------------------------------------------------------------------------
/resources/views/doctor/schedule.blade.php:
--------------------------------------------------------------------------------
1 | @extends('main.layout.adminlayout');
2 | @section('title', 'Doctor List')
3 |
4 | @section('content')
5 |
--------------------------------------------------------------------------------
/resources/views/emails/contact.blade.php:
--------------------------------------------------------------------------------
1 | You have a new message via the contact form
2 |
3 |
4 | {{$bodymessage}}
5 |
6 |
7 | sent via {{$email}}
--------------------------------------------------------------------------------
/resources/views/home.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | @if (session('status'))
12 |
13 | {{ session('status') }}
14 |
15 | @endif
16 |
17 | You are logged in!
18 |
19 |
20 |
21 |
22 |
23 | @endsection
24 |
--------------------------------------------------------------------------------
/resources/views/inc/editform.blade.php:
--------------------------------------------------------------------------------
1 | {{ csrf_field() }}
2 |
3 |
4 | Title
5 |
6 |
7 |
8 |
9 | Description
10 |
11 |
12 |
13 | @isset($needImage)
14 |
15 | Image
16 |
17 |
18 | @endisset
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/resources/views/product/nav1.blade.php:
--------------------------------------------------------------------------------
1 | @section('nav-items')
2 | Dashboard
3 | Product Details
4 | Supplier Details
5 | Generate Report
6 | @endsection
--------------------------------------------------------------------------------
/resources/views/product_order_system/OrderRowPrint.blade.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VidulaDakshitha/Clinic-Managemnt-System-using-Laravel/fc805fbcfe5946911486803bba1097da0ce61d2c/resources/views/product_order_system/OrderRowPrint.blade.php
--------------------------------------------------------------------------------
/resources/views/read_prescription.blade.php:
--------------------------------------------------------------------------------
1 | @extends('backend.lay')
2 | @section('title', 'Record Management')
3 |
4 |
5 |
6 |
7 |
8 | @section('content')
9 |
10 |
11 |
Prescription
12 | ID:
{{$prescription->id}}
13 | Doctor_id:
{{$prescription->doctor_id}}
14 | Patient_id:
{{$prescription->patient_id}}
15 | Prescription:
{{$prescription->description}}
16 |
17 |
18 |
Back
19 |
20 |
21 | @endsection
22 |
--------------------------------------------------------------------------------
/resources/views/read_treat.blade.php:
--------------------------------------------------------------------------------
1 | @extends('backend.lay')
2 | @section('title', 'Record Management')
3 |
4 |
5 |
6 |
7 |
8 | @section('content')
9 |
10 |
11 |
Treatment Record
12 | ID:
{{$treatment_record->record_id}}
13 | Date:
{{$treatment_record->date}}
14 | Description:
{{$treatment_record->description}}
15 |
16 |
17 |
Back
18 |
19 |
20 | @endsection
21 |
--------------------------------------------------------------------------------
/resources/views/read_treatment.blade.php:
--------------------------------------------------------------------------------
1 | @extends('backend.l')
2 | @section('title', 'Record Management')
3 |
4 |
5 |
6 |
7 |
8 | @section('content')
9 |
10 |
11 |
Treatment Record
12 | ID:
{{$treatment_record->record_id}}
13 | Date:
{{$treatment_record->date}}
14 | Description:
{{$treatment_record->description}}
15 |
16 |
17 |
Back
18 |
19 |
20 | @endsection
21 |
--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
1 | get('/user', function (Request $request) {
17 | return $request->user();
18 | });
19 |
--------------------------------------------------------------------------------
/routes/channels.php:
--------------------------------------------------------------------------------
1 | id === (int) $id;
16 | });
17 |
--------------------------------------------------------------------------------
/routes/console.php:
--------------------------------------------------------------------------------
1 | comment(Inspiring::quote());
18 | })->describe('Display an inspiring quote');
19 |
--------------------------------------------------------------------------------
/server.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | $uri = urldecode(
11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
12 | );
13 |
14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the
15 | // built-in PHP web server. This provides a convenient way to test a Laravel
16 | // application without having installed a "real" web server software here.
17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
18 | return false;
19 | }
20 |
21 | require_once __DIR__.'/public/index.php';
22 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
1 | make(Kernel::class)->bootstrap();
19 |
20 | return $app;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/tests/Feature/ExampleTest.php:
--------------------------------------------------------------------------------
1 | get('/');
18 |
19 | $response->assertStatus(200);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/webpack.mix.js:
--------------------------------------------------------------------------------
1 | const mix = require('laravel-mix');
2 |
3 | /*
4 | |--------------------------------------------------------------------------
5 | | Mix Asset Management
6 | |--------------------------------------------------------------------------
7 | |
8 | | Mix provides a clean, fluent API for defining some Webpack build steps
9 | | for your Laravel application. By default, we are compiling the Sass
10 | | file for the application as well as bundling up all the JS files.
11 | |
12 | */
13 |
14 | mix.js('resources/js/app.js', 'public/js')
15 | .sass('resources/sass/app.scss', 'public/css');
16 |
--------------------------------------------------------------------------------