├── 2019
├── 06
│ ├── 14
│ │ └── commit.md
│ ├── 15
│ │ └── commit.md
│ ├── 16
│ │ └── commit.md
│ ├── 17
│ │ └── commit.md
│ ├── 18
│ │ └── commit.md
│ └── 19
│ │ └── commit.md
├── 07
│ ├── 14
│ │ └── commit.md
│ ├── 15
│ │ └── commit.md
│ ├── 16
│ │ └── commit.md
│ ├── 17
│ │ └── commit.md
│ ├── 18
│ │ └── commit.md
│ └── 19
│ │ └── commit.md
└── 08
│ ├── 14
│ └── commit.md
│ ├── 15
│ └── commit.md
│ ├── 16
│ └── commit.md
│ ├── 17
│ └── commit.md
│ ├── 18
│ └── commit.md
│ └── 19
│ └── commit.md
├── favicon.ico
├── application
├── public
│ ├── favicon.ico
│ ├── robots.txt
│ ├── mix-manifest.json
│ └── .DS_Store
├── storage
│ ├── logs
│ │ └── .gitignore
│ ├── app
│ │ ├── public
│ │ │ └── .gitignore
│ │ └── .gitignore
│ ├── framework
│ │ ├── views
│ │ │ └── .gitignore
│ │ ├── cache
│ │ │ ├── data
│ │ │ │ └── .gitignore
│ │ │ └── .gitignore
│ │ ├── sessions
│ │ │ └── .gitignore
│ │ ├── testing
│ │ │ └── .gitignore
│ │ ├── .DS_Store
│ │ └── .gitignore
│ └── .DS_Store
├── bootstrap
│ └── cache
│ │ └── .gitignore
├── database
│ ├── .gitignore
│ ├── seeds
│ │ └── DatabaseSeeder.php
│ └── migrations
│ │ └── 2014_10_12_100000_create_password_resets_table.php
├── .DS_Store
├── app
│ ├── .DS_Store
│ ├── Http
│ │ ├── .DS_Store
│ │ ├── Controllers
│ │ │ ├── .DS_Store
│ │ │ ├── Controller.php
│ │ │ ├── UserController.php
│ │ │ └── Personal
│ │ │ │ └── PersonalSettingsController.php
│ │ └── Middleware
│ │ │ ├── EncryptCookies.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── CheckForMaintenanceMode.php
│ │ │ ├── TrustProxies.php
│ │ │ ├── Authenticate.php
│ │ │ ├── VerifyCsrfToken.php
│ │ │ ├── RedirectIfAuthenticated.php
│ │ │ ├── Localization.php
│ │ │ └── Admin.php
│ ├── Classes
│ │ └── .DS_Store
│ ├── Permissions.php
│ └── Providers
│ │ ├── BroadcastServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── AppServiceProvider.php
│ │ └── EventServiceProvider.php
├── resources
│ ├── .DS_Store
│ ├── js
│ │ ├── .DS_Store
│ │ └── components
│ │ │ └── ExampleComponent.vue
│ ├── lang
│ │ ├── .DS_Store
│ │ └── en
│ │ │ ├── .DS_Store
│ │ │ ├── pagination.php
│ │ │ ├── auth.php
│ │ │ └── passwords.php
│ ├── views
│ │ ├── .DS_Store
│ │ ├── admin
│ │ │ ├── .DS_Store
│ │ │ ├── modals
│ │ │ │ └── .DS_Store
│ │ │ └── template.blade.php
│ │ ├── auth
│ │ │ └── .DS_Store
│ │ ├── personal
│ │ │ └── .DS_Store
│ │ └── errors
│ │ │ └── permission-denied.blade.php
│ └── sass
│ │ ├── app.scss
│ │ └── _variables.scss
├── .gitattributes
├── .gitignore
├── tests
│ ├── TestCase.php
│ ├── Unit
│ │ └── ExampleTest.php
│ ├── Feature
│ │ └── ExampleTest.php
│ └── CreatesApplication.php
├── .styleci.yml
├── routes
│ ├── channels.php
│ ├── console.php
│ └── api.php
├── webpack.mix.js
└── server.php
├── robots.txt
├── .DS_Store
└── assets
├── .DS_Store
├── js
└── .DS_Store
├── faces
├── .DS_Store
└── thumbsup.png
├── images
├── .DS_Store
├── img
│ ├── logo.png
│ ├── .DS_Store
│ ├── favicon.ico
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ └── clock-background.png
└── faces
│ ├── .DS_Store
│ ├── thumbsup.png
│ └── default_user.jpg
└── vendor
├── .DS_Store
├── respond
└── .DS_Store
├── DataTables
├── .DS_Store
├── DataTables-1.10.20
│ └── images
│ │ ├── sort_asc.png
│ │ ├── sort_both.png
│ │ ├── sort_desc.png
│ │ ├── sort_asc_disabled.png
│ │ └── sort_desc_disabled.png
└── Responsive-2.2.3
│ └── js
│ └── responsive.jqueryui.min.js
├── bootstrap
├── .DS_Store
├── js
│ └── .DS_Store
└── css
│ └── .DS_Store
├── chartsjs
├── .DS_Store
└── Chart.min.css
├── html5shiv
└── .DS_Store
├── momentjs
└── .DS_Store
├── mdtimepicker
├── .DS_Store
└── mdtimepicker-theme.css
├── semantic-ui
├── .DS_Store
├── themes
│ ├── .DS_Store
│ └── default
│ │ ├── .DS_Store
│ │ └── assets
│ │ ├── .DS_Store
│ │ ├── fonts
│ │ ├── icons.eot
│ │ ├── icons.otf
│ │ ├── icons.ttf
│ │ ├── icons.woff
│ │ ├── icons.woff2
│ │ ├── brand-icons.eot
│ │ ├── brand-icons.ttf
│ │ ├── brand-icons.woff
│ │ ├── brand-icons.woff2
│ │ ├── outline-icons.eot
│ │ ├── outline-icons.ttf
│ │ ├── outline-icons.woff
│ │ └── outline-icons.woff2
│ │ └── images
│ │ └── flags.png
└── components
│ └── sticky.min.css
├── air-datepicker
├── .DS_Store
└── dist
│ ├── .DS_Store
│ └── js
│ ├── .DS_Store
│ └── i18n
│ ├── datepicker.zh.js
│ ├── datepicker.cs.js
│ ├── datepicker.da.js
│ ├── datepicker.sk.js
│ ├── datepicker.en.js
│ ├── datepicker.es.js
│ ├── datepicker.pt.js
│ ├── datepicker.ro.js
│ ├── datepicker.de.js
│ ├── datepicker.fr.js
│ ├── datepicker.nl.js
│ ├── datepicker.pt-BR.js
│ ├── datepicker.pl.js
│ ├── datepicker.hu.js
│ └── datepicker.fi.js
└── flag-icon-css
├── .DS_Store
├── css
└── .DS_Store
└── flags
├── .DS_Store
├── 1x1
├── bd.svg
├── de.svg
├── bq.svg
├── nl.svg
├── pl.svg
├── am.svg
├── gl.svg
├── lu.svg
├── dk.svg
├── gb-eng.svg
├── gb-sct.svg
├── fi.svg
├── id.svg
├── lv.svg
├── mc.svg
├── ua.svg
├── at.svg
├── ma.svg
├── es-ca.svg
├── bw.svg
├── ng.svg
├── ae.svg
├── hu.svg
├── ye.svg
├── ga.svg
├── ml.svg
├── ne.svg
├── td.svg
├── ci.svg
├── be.svg
├── co.svg
├── ru.svg
├── th.svg
├── bg.svg
├── bl.svg
├── cr.svg
├── fr.svg
├── gf.svg
├── gh.svg
├── gn.svg
├── gp.svg
├── ie.svg
├── it.svg
├── mf.svg
├── mq.svg
├── pm.svg
├── re.svg
├── wf.svg
├── yt.svg
├── dz.svg
├── mg.svg
├── mv.svg
├── ro.svg
├── ch.svg
├── sr.svg
├── no.svg
├── sj.svg
├── tt.svg
├── mu.svg
├── qa.svg
├── ee.svg
├── lc.svg
├── bf.svg
├── to.svg
├── jm.svg
├── gm.svg
├── ss.svg
├── mk.svg
├── sn.svg
├── mr.svg
├── lt.svg
├── sl.svg
├── gy.svg
├── az.svg
├── cg.svg
├── vc.svg
├── cz.svg
├── jp.svg
├── so.svg
├── vn.svg
├── sd.svg
├── la.svg
├── pw.svg
├── cd.svg
├── gb.svg
├── bj.svg
├── kw.svg
├── bh.svg
├── is.svg
├── ly.svg
├── fo.svg
├── sy.svg
├── tr.svg
├── ps.svg
├── ax.svg
├── bb.svg
├── bs.svg
├── cu.svg
├── cl.svg
├── sc.svg
├── tl.svg
├── bv.svg
├── dj.svg
├── gg.svg
├── tz.svg
├── pr.svg
├── cf.svg
├── ca.svg
├── nr.svg
├── pa.svg
├── ws.svg
├── cw.svg
├── pk.svg
├── lr.svg
├── jo.svg
├── se.svg
├── cn.svg
├── mh.svg
├── tk.svg
├── tn.svg
├── tg.svg
├── rw.svg
├── fm.svg
└── ag.svg
└── 4x3
├── bd.svg
├── de.svg
├── gl.svg
├── am.svg
├── bq.svg
├── nl.svg
├── lu.svg
├── pl.svg
├── gb-sct.svg
├── dk.svg
├── fi.svg
├── lv.svg
├── at.svg
├── id.svg
├── mc.svg
├── ua.svg
├── gb-eng.svg
├── ma.svg
├── ae.svg
├── es-ca.svg
├── bw.svg
├── ng.svg
├── td.svg
├── ga.svg
├── hu.svg
├── ml.svg
├── ne.svg
├── sl.svg
├── ye.svg
├── ci.svg
├── gh.svg
├── bg.svg
├── dz.svg
├── mv.svg
├── ru.svg
├── be.svg
├── co.svg
├── th.svg
├── bl.svg
├── cr.svg
├── fr.svg
├── gf.svg
├── gn.svg
├── gp.svg
├── ie.svg
├── it.svg
├── mf.svg
├── mq.svg
├── pm.svg
├── re.svg
├── wf.svg
├── yt.svg
├── mg.svg
├── ro.svg
├── sr.svg
├── tt.svg
├── ch.svg
├── ee.svg
├── no.svg
├── sj.svg
├── mu.svg
├── cd.svg
├── qa.svg
├── bf.svg
├── lc.svg
├── mk.svg
├── to.svg
├── ss.svg
├── jm.svg
├── sn.svg
├── mr.svg
├── lt.svg
├── vc.svg
├── la.svg
├── pw.svg
├── gy.svg
├── jp.svg
├── az.svg
├── cg.svg
├── cz.svg
├── so.svg
├── vn.svg
├── bh.svg
├── sd.svg
├── gb.svg
├── bj.svg
├── kw.svg
├── is.svg
├── sy.svg
├── tr.svg
├── ly.svg
├── bs.svg
├── gm.svg
├── tz.svg
├── cl.svg
├── bb.svg
├── fo.svg
├── ps.svg
├── gg.svg
├── sc.svg
├── ax.svg
├── bv.svg
├── dj.svg
├── tl.svg
├── cu.svg
├── pr.svg
├── nr.svg
├── ws.svg
├── ca.svg
├── cw.svg
├── cf.svg
├── mh.svg
├── se.svg
├── lr.svg
├── tg.svg
├── jo.svg
├── tk.svg
├── rw.svg
├── pk.svg
├── tn.svg
├── ag.svg
├── pa.svg
├── fm.svg
├── cn.svg
├── kp.svg
└── gw.svg
/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/2019/06/14/commit.md:
--------------------------------------------------------------------------------
1 | 10 on 06/14/2019
2 |
--------------------------------------------------------------------------------
/2019/06/15/commit.md:
--------------------------------------------------------------------------------
1 | 1 on 06/15/2019
2 |
--------------------------------------------------------------------------------
/2019/06/16/commit.md:
--------------------------------------------------------------------------------
1 | 10 on 06/16/2019
2 |
--------------------------------------------------------------------------------
/2019/06/17/commit.md:
--------------------------------------------------------------------------------
1 | 7 on 06/17/2019
2 |
--------------------------------------------------------------------------------
/2019/06/18/commit.md:
--------------------------------------------------------------------------------
1 | 7 on 06/18/2019
2 |
--------------------------------------------------------------------------------
/2019/06/19/commit.md:
--------------------------------------------------------------------------------
1 | 7 on 06/19/2019
2 |
--------------------------------------------------------------------------------
/2019/07/14/commit.md:
--------------------------------------------------------------------------------
1 | 8 on 07/14/2019
2 |
--------------------------------------------------------------------------------
/2019/07/15/commit.md:
--------------------------------------------------------------------------------
1 | 2 on 07/15/2019
2 |
--------------------------------------------------------------------------------
/2019/07/16/commit.md:
--------------------------------------------------------------------------------
1 | 9 on 07/16/2019
2 |
--------------------------------------------------------------------------------
/2019/07/17/commit.md:
--------------------------------------------------------------------------------
1 | 7 on 07/17/2019
2 |
--------------------------------------------------------------------------------
/2019/07/18/commit.md:
--------------------------------------------------------------------------------
1 | 5 on 07/18/2019
2 |
--------------------------------------------------------------------------------
/2019/07/19/commit.md:
--------------------------------------------------------------------------------
1 | 1 on 07/19/2019
2 |
--------------------------------------------------------------------------------
/2019/08/14/commit.md:
--------------------------------------------------------------------------------
1 | 6 on 08/14/2019
2 |
--------------------------------------------------------------------------------
/2019/08/15/commit.md:
--------------------------------------------------------------------------------
1 | 8 on 08/15/2019
2 |
--------------------------------------------------------------------------------
/2019/08/16/commit.md:
--------------------------------------------------------------------------------
1 | 7 on 08/16/2019
2 |
--------------------------------------------------------------------------------
/2019/08/17/commit.md:
--------------------------------------------------------------------------------
1 | 10 on 08/17/2019
2 |
--------------------------------------------------------------------------------
/2019/08/18/commit.md:
--------------------------------------------------------------------------------
1 | 1 on 08/18/2019
2 |
--------------------------------------------------------------------------------
/2019/08/19/commit.md:
--------------------------------------------------------------------------------
1 | 9 on 08/19/2019
2 |
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/application/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/application/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/application/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/application/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/application/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/.DS_Store
--------------------------------------------------------------------------------
/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/.DS_Store
--------------------------------------------------------------------------------
/application/public/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/js/app.js": "/js/app.js",
3 | "/css/app.css": "/css/app.css"
4 | }
5 |
--------------------------------------------------------------------------------
/assets/js/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/js/.DS_Store
--------------------------------------------------------------------------------
/application/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/.DS_Store
--------------------------------------------------------------------------------
/assets/faces/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/faces/.DS_Store
--------------------------------------------------------------------------------
/assets/images/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/.DS_Store
--------------------------------------------------------------------------------
/application/app/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/app/.DS_Store
--------------------------------------------------------------------------------
/assets/faces/thumbsup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/faces/thumbsup.png
--------------------------------------------------------------------------------
/assets/images/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/img/logo.png
--------------------------------------------------------------------------------
/application/public/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/public/.DS_Store
--------------------------------------------------------------------------------
/application/storage/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/storage/.DS_Store
--------------------------------------------------------------------------------
/assets/images/faces/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/faces/.DS_Store
--------------------------------------------------------------------------------
/assets/images/img/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/img/.DS_Store
--------------------------------------------------------------------------------
/assets/images/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/img/favicon.ico
--------------------------------------------------------------------------------
/application/app/Http/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/app/Http/.DS_Store
--------------------------------------------------------------------------------
/application/resources/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/respond/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/respond/.DS_Store
--------------------------------------------------------------------------------
/application/app/Classes/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/app/Classes/.DS_Store
--------------------------------------------------------------------------------
/application/resources/js/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/js/.DS_Store
--------------------------------------------------------------------------------
/assets/images/faces/thumbsup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/faces/thumbsup.png
--------------------------------------------------------------------------------
/assets/vendor/DataTables/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/DataTables/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/bootstrap/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/chartsjs/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/chartsjs/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/html5shiv/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/html5shiv/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/momentjs/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/momentjs/.DS_Store
--------------------------------------------------------------------------------
/application/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/application/resources/lang/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/lang/.DS_Store
--------------------------------------------------------------------------------
/assets/images/faces/default_user.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/faces/default_user.jpg
--------------------------------------------------------------------------------
/assets/images/img/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/img/favicon-16x16.png
--------------------------------------------------------------------------------
/assets/images/img/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/img/favicon-32x32.png
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/js/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/bootstrap/js/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/mdtimepicker/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/mdtimepicker/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/.DS_Store
--------------------------------------------------------------------------------
/application/resources/lang/en/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/lang/en/.DS_Store
--------------------------------------------------------------------------------
/application/resources/views/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/views/.DS_Store
--------------------------------------------------------------------------------
/application/storage/framework/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/storage/framework/.DS_Store
--------------------------------------------------------------------------------
/assets/images/img/clock-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/images/img/clock-background.png
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/air-datepicker/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/css/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/bootstrap/css/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/flag-icon-css/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/css/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/flag-icon-css/css/.DS_Store
--------------------------------------------------------------------------------
/application/app/Http/Controllers/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/app/Http/Controllers/.DS_Store
--------------------------------------------------------------------------------
/application/resources/views/admin/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/views/admin/.DS_Store
--------------------------------------------------------------------------------
/application/resources/views/auth/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/views/auth/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/air-datepicker/dist/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/flag-icon-css/flags/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/.DS_Store
--------------------------------------------------------------------------------
/application/resources/views/personal/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/views/personal/.DS_Store
--------------------------------------------------------------------------------
/application/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 |
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/air-datepicker/dist/js/.DS_Store
--------------------------------------------------------------------------------
/application/resources/views/admin/modals/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/application/resources/views/admin/modals/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/.DS_Store
--------------------------------------------------------------------------------
/assets/vendor/DataTables/DataTables-1.10.20/images/sort_asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/DataTables/DataTables-1.10.20/images/sort_asc.png
--------------------------------------------------------------------------------
/assets/vendor/DataTables/DataTables-1.10.20/images/sort_both.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/DataTables/DataTables-1.10.20/images/sort_both.png
--------------------------------------------------------------------------------
/assets/vendor/DataTables/DataTables-1.10.20/images/sort_desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/DataTables/DataTables-1.10.20/images/sort_desc.png
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.eot
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.otf
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.ttf
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.woff
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/images/flags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/images/flags.png
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/icons.woff2
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.eot
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.ttf
--------------------------------------------------------------------------------
/application/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 |
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.woff
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/brand-icons.woff2
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.eot
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.ttf
--------------------------------------------------------------------------------
/assets/vendor/DataTables/DataTables-1.10.20/images/sort_asc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/DataTables/DataTables-1.10.20/images/sort_asc_disabled.png
--------------------------------------------------------------------------------
/assets/vendor/DataTables/DataTables-1.10.20/images/sort_desc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/DataTables/DataTables-1.10.20/images/sort_desc_disabled.png
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.woff
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BlondelSeumo/Time-Clock-Application-For-Employees/HEAD/assets/vendor/semantic-ui/themes/default/assets/fonts/outline-icons.woff2
--------------------------------------------------------------------------------
/application/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/hot
3 | /public/storage
4 | /storage/*.key
5 | /vendor
6 | .env
7 | .env.backup
8 | .phpunit.result.cache
9 | Homestead.json
10 | Homestead.yaml
11 | npm-debug.log
12 | yarn-error.log
13 |
--------------------------------------------------------------------------------
/application/tests/TestCase.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bd.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/de.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gl.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/de.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/am.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bq.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/nl.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bq.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/nl.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/pl.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/lu.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/pl.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/am.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gl.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/lu.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gb-sct.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/dk.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gb-eng.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gb-sct.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/dk.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/fi.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/lv.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/fi.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/id.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/lv.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mc.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ua.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/at.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/id.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mc.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ua.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/at.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ma.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gb-eng.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ma.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/es-ca.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ae.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/es-ca.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bw.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ng.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bw.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ng.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ae.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/td.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/application/.styleci.yml:
--------------------------------------------------------------------------------
1 | php:
2 | preset: laravel
3 | enabled:
4 | - alpha_ordered_imports
5 | disabled:
6 | - length_ordered_imports
7 | - unused_use
8 | finder:
9 | not-name:
10 | - index.php
11 | - server.php
12 | js:
13 | finder:
14 | not-name:
15 | - webpack.mix.js
16 | css: true
17 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/hu.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ye.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ga.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/hu.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ml.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ne.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sl.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ye.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ga.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ml.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ne.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/td.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ci.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gh.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ci.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bg.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/dz.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mv.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ru.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/be.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/co.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ru.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/th.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/be.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/co.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/th.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bg.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bl.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cr.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/fr.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gh.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gn.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gp.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ie.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/it.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mq.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/pm.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/re.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/wf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/yt.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bl.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cr.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/fr.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gn.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gp.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ie.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/it.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mq.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/pm.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/re.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/wf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/yt.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/dz.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/application/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mg.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mv.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ro.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mg.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ro.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sr.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tt.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ch.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/sr.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ch.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/no.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/sj.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tt.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ee.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/no.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sj.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mu.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mu.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/application/app/Permissions.php:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
Permission Denied
8 |
Sorry, you don't have permission to access the page.
9 |
10 |
11 |
12 | @endsection
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cd.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/qa.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/qa.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/application/tests/Unit/ExampleTest.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ee.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/lc.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/lc.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mk.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/to.svg:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/application/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 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bf.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/to.svg:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ss.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/jm.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/jm.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gm.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ss.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/application/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/CheckForMaintenanceMode.php:
--------------------------------------------------------------------------------
1 | get('/');
18 |
19 | $response->assertStatus(200);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/sn.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mr.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sn.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mr.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/application/app/Http/Controllers/UserController.php:
--------------------------------------------------------------------------------
1 | user();
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/lt.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/lt.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/vc.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/application/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
1 | make(Kernel::class)->bootstrap();
19 |
20 | return $app;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/application/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/chartsjs/Chart.min.css:
--------------------------------------------------------------------------------
1 | @keyframes chartjs-render-animation{from{opacity:.99}to{opacity:1}}.chartjs-render-monitor{animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/la.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/pw.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gy.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/az.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cg.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/vc.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gy.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/jp.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cz.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/jp.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/az.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cg.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cz.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/so.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/vn.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/so.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/vn.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/TrustProxies.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/la.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/pw.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bh.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sd.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cd.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gb.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gb.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/Authenticate.php:
--------------------------------------------------------------------------------
1 | expectsJson()) {
18 | return route('login');
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bj.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/kw.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bj.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/application/routes/channels.php:
--------------------------------------------------------------------------------
1 | id === (int) $id;
16 | });
17 |
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.zh.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['zh'] = {
2 | days: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
3 | daysShort: ['日', '一', '二', '三', '四', '五', '六'],
4 | daysMin: ['日', '一', '二', '三', '四', '五', '六'],
5 | months: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
6 | monthsShort: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
7 | today: '今天',
8 | clear: '清除',
9 | dateFormat: 'yyyy-mm-dd',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/kw.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bh.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/application/resources/views/admin/template.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.default')
2 |
3 | @section('styles')
4 |
5 | @endsection
6 |
7 | @section('content')
8 |
9 |
10 |
11 |
Title
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | @endsection
20 |
21 | @section('scripts')
22 |
25 | @endsection
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/is.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/is.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sy.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tr.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/VerifyCsrfToken.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/application/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 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/fo.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ly.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/sy.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tr.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ps.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bs.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gm.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tz.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cl.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/application/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/application/routes/console.php:
--------------------------------------------------------------------------------
1 | comment(Inspiring::quote());
18 | })->describe('Display an inspiring quote');
19 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ax.svg:
--------------------------------------------------------------------------------
1 |
19 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bb.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bs.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bb.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/fo.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cu.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ps.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/semantic-ui/components/sticky.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * # Semantic UI 2.4.0 - Sticky
3 | * http://github.com/semantic-org/semantic-ui/
4 | *
5 | *
6 | * Released under the MIT license
7 | * http://opensource.org/licenses/MIT
8 | *
9 | */.ui.sticky{position:static;-webkit-transition:none;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cl.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/sc.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tl.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gg.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/sc.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/application/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 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/bv.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/dj.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ax.svg:
--------------------------------------------------------------------------------
1 |
19 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/bv.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/dj.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/application/app/Http/Controllers/Personal/PersonalSettingsController.php:
--------------------------------------------------------------------------------
1 | check()) {
21 | return redirect('/home');
22 | }
23 |
24 | return $next($request);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tl.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/gg.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tz.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/application/resources/js/components/ExampleComponent.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | I'm an example component.
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.cs.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['cs'] = {
2 | days: ['Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota'],
3 | daysShort: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'],
4 | daysMin: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'],
5 | months: ['Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'],
6 | monthsShort: ['Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čvn', 'Čvc', 'Srp', 'Zář', 'Říj', 'Lis', 'Pro'],
7 | today: 'Dnes',
8 | clear: 'Vymazat',
9 | dateFormat: 'dd.mm.yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.da.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['da'] = {
2 | days: ['Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag'],
3 | daysShort: ['Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør'],
4 | daysMin: ['Sø', 'Ma', 'Ti', 'On', 'To', 'Fr', 'Lø'],
5 | months: ['Januar','Februar','Marts','April','Maj','Juni', 'Juli','August','September','Oktober','November','December'],
6 | monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'],
7 | today: 'I dag',
8 | clear: 'Nulstil',
9 | dateFormat: 'dd/mm/yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.sk.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['sk'] = {
2 | days: ['Nedeľa', 'Pondelok', 'Utorok', 'Streda', 'Štvrtok', 'Piatok', 'Sobota'],
3 | daysShort: ['Ned', 'Pon', 'Uto', 'Str', 'Štv', 'Pia', 'Sob'],
4 | daysMin: ['Ne', 'Po', 'Ut', 'St', 'Št', 'Pi', 'So'],
5 | months: ['Január','Február','Marec','Apríl','Máj','Jún', 'Júl','August','September','Október','November','December'],
6 | monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'Máj', 'Jún', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'],
7 | today: 'Dnes',
8 | clear: 'Vymazať',
9 | dateFormat: 'dd.mm.yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/pr.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cu.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.en.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['en'] = {
2 | days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
3 | daysShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
4 | daysMin: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
5 | months: ['January','February','March','April','May','June', 'July','August','September','October','November','December'],
6 | monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
7 | today: 'Today',
8 | clear: 'Clear',
9 | dateFormat: 'mm/dd/yyyy',
10 | timeFormat: 'hh:ii aa',
11 | firstDay: 0
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.es.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['es'] = {
2 | days: ['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'],
3 | daysShort: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab'],
4 | daysMin: ['Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sa'],
5 | months: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', 'Julio','Augosto','Septiembre','Octubre','Noviembre','Diciembre'],
6 | monthsShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
7 | today: 'Hoy',
8 | clear: 'Limpiar',
9 | dateFormat: 'dd/mm/yyyy',
10 | timeFormat: 'hh:ii aa',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.pt.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['pt'] = {
2 | days: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado'],
3 | daysShort: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab'],
4 | daysMin: ['Do', 'Se', 'Te', 'Qa', 'Qi', 'Sx', 'Sa'],
5 | months: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'],
6 | monthsShort: ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],
7 | today: 'Hoje',
8 | clear: 'Limpar',
9 | dateFormat: 'dd/mm/yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.ro.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['ro'] = {
2 | days: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'],
3 | daysShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'],
4 | daysMin: ['D', 'L', 'Ma', 'Mi', 'J', 'V', 'S'],
5 | months: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie','Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'],
6 | monthsShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 'Iul', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec'],
7 | today: 'Azi',
8 | clear: 'Şterge',
9 | dateFormat: 'dd.mm.yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | };
13 | })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.de.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['de'] = {
2 | days: ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],
3 | daysShort: ['Son', 'Mon', 'Die', 'Mit', 'Don', 'Fre', 'Sam'],
4 | daysMin: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
5 | months: ['Januar','Februar','März','April','Mai','Juni', 'Juli','August','September','Oktober','November','Dezember'],
6 | monthsShort: ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
7 | today: 'Heute',
8 | clear: 'Aufräumen',
9 | dateFormat: 'dd.mm.yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | };
13 | })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.fr.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['fr'] = {
2 | days: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],
3 | daysShort: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
4 | daysMin: ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'],
5 | months: ['Janvier','Février','Mars','Avril','Mai','Juin', 'Juillet','Août','Septembre','Octobre','Novembre','Decembre'],
6 | monthsShort: ['Jan', 'Fév', 'Mars', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Dec'],
7 | today: "Aujourd'hui",
8 | clear: 'Effacer',
9 | dateFormat: 'dd/mm/yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.nl.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['nl'] = {
2 | days: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
3 | daysShort: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
4 | daysMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
5 | months: ['Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December'],
6 | monthsShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'],
7 | today: 'Vandaag',
8 | clear: 'Legen',
9 | dateFormat: 'dd-MM-yy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 0
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.pt-BR.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['pt-BR'] = {
2 | days: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado'],
3 | daysShort: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab'],
4 | daysMin: ['Do', 'Se', 'Te', 'Qu', 'Qu', 'Se', 'Sa'],
5 | months: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'],
6 | monthsShort: ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],
7 | today: 'Hoje',
8 | clear: 'Limpar',
9 | dateFormat: 'dd/mm/yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 0
12 | }; })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/pr.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/application/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
1 | 'These credentials do not match our records.',
17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cf.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/nr.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.pl.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['pl'] = {
2 | days: ['Niedziela', 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek', 'Sobota'],
3 | daysShort: ['Nie', 'Pon', 'Wto', 'Śro', 'Czw', 'Pią', 'Sob'],
4 | daysMin: ['Nd', 'Pn', 'Wt', 'Śr', 'Czw', 'Pt', 'So'],
5 | months: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec', 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'],
6 | monthsShort: ['Sty', 'Lut', 'Mar', 'Kwi', 'Maj', 'Cze', 'Lip', 'Sie', 'Wrz', 'Paź', 'Lis', 'Gru'],
7 | today: 'Dzisiaj',
8 | clear: 'Wyczyść',
9 | dateFormat: 'yyyy-mm-dd',
10 | timeFormat: 'hh:ii:aa',
11 | firstDay: 1
12 | };
13 | })(jQuery);
--------------------------------------------------------------------------------
/application/routes/api.php:
--------------------------------------------------------------------------------
1 | get('/user', function (Request $request) {
17 | // return $request->user();
18 | // });
19 |
20 | Route::middleware('auth:api')->get('/user', 'UserController@AuthRouteAPI');
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ca.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ws.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/mdtimepicker/mdtimepicker-theme.css:
--------------------------------------------------------------------------------
1 | .mdtp__wrapper[data-theme='yellow'] .mdtp__time_holder { background-color: #F9A825; }
2 | .mdtp__wrapper[data-theme='yellow'] .mdtp__clock .mdtp__am.active,
3 | .mdtp__wrapper[data-theme='yellow'] .mdtp__clock .mdtp__pm.active { background-color: #F9A825; }
4 | .mdtp__wrapper[data-theme='yellow'] .mdtp__clock .mdtp__clock_dot { background-color: #F9A825; }
5 | .mdtp__wrapper[data-theme='yellow'] .mdtp__digit.active span,
6 | .mdtp__wrapper[data-theme='yellow'] .mdtp__clock .mdtp__digit span:hover { background-color: #F9A825 !important; }
7 | .mdtp__wrapper[data-theme='yellow'] .mdtp__digit.active:before { background-color: #F9A825; }
8 | .mdtp__wrapper[data-theme='yellow'] .mdtp__button { color: #F9A825; }
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.hu.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { ;(function ($) { $.fn.datepicker.language['hu'] = {
2 | days: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
3 | daysShort: ['Va', 'Hé', 'Ke', 'Sze', 'Cs', 'Pé', 'Szo'],
4 | daysMin: ['V', 'H', 'K', 'Sz', 'Cs', 'P', 'Sz'],
5 | months: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június', 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
6 | monthsShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
7 | today: 'Ma',
8 | clear: 'Törlés',
9 | dateFormat: 'yyyy-mm-dd',
10 | timeFormat: 'hh:ii aa',
11 | firstDay: 1
12 | }; })(jQuery); })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/nr.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/pa.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/application/app/Providers/AuthServiceProvider.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any authentication / authorization services.
21 | *
22 | * @return void
23 | */
24 | public function boot()
25 | {
26 | $this->registerPolicies();
27 |
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ws.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/air-datepicker/dist/js/i18n/datepicker.fi.js:
--------------------------------------------------------------------------------
1 | ;(function ($) { $.fn.datepicker.language['fi'] = {
2 | days: ['Sunnuntai', 'Maanantai', 'Tiistai', 'Keskiviikko', 'Torstai', 'Perjantai', 'Lauantai'],
3 | daysShort: ['Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'La'],
4 | daysMin: ['Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'La'],
5 | months: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu', 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'],
6 | monthsShort: ['Tammi', 'Helmi', 'Maalis', 'Huhti', 'Touko', 'Kesä', 'Heinä', 'Elo', 'Syys', 'Loka', 'Marras', 'Joulu'],
7 | today: 'Tänään',
8 | clear: 'Tyhjennä',
9 | dateFormat: 'dd.mm.yyyy',
10 | timeFormat: 'hh:ii',
11 | firstDay: 1
12 | };
13 | })(jQuery);
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ca.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cw.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cw.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/pk.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/lr.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cf.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/mh.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/jo.svg:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/se.svg:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/se.svg:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/Localization.php:
--------------------------------------------------------------------------------
1 | has('locale'))
26 | {
27 | App::setLocale(session()->get('locale'));
28 | }
29 |
30 | return $next($request);
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/cn.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/mh.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tk.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tn.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/lr.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tg.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/application/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
1 | 'Your password has been reset!',
17 | 'sent' => 'We have e-mailed your password reset link!',
18 | 'token' => 'This password reset token is invalid.',
19 | 'user' => "We can't find a user with that e-mail address.",
20 |
21 | ];
22 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/tg.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/jo.svg:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tk.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/rw.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/rw.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/fm.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/pk.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/tn.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/ag.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/pa.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/1x1/ag.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/fm.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/assets/vendor/DataTables/Responsive-2.2.3/js/responsive.jqueryui.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | jQuery UI integration for DataTables' Responsive
3 | ©2015 SpryMedia Ltd - datatables.net/license
4 | */
5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-jqui")(a,b).$;b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable,b=a.Responsive.display,f=b.modal;b.modal=function(a){return function(b,
6 | d,e){c.fn.dialog?d||c("").append(e()).appendTo("body").dialog(c.extend(!0,{title:a&&a.header?a.header(b):"",width:500},a.dialog)):f(b,d,e)}};return a.Responsive});
7 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/cn.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/application/app/Http/Middleware/Admin.php:
--------------------------------------------------------------------------------
1 | acc_type;
25 |
26 | if ($t == 2) {
27 | // nothing
28 | } else {
29 | Auth::logout();
30 | return redirect()->route('denied');
31 | }
32 |
33 | return $next($request);
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/application/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/assets/vendor/flag-icon-css/flags/4x3/gw.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/application/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token');
19 | $table->timestamp('created_at')->nullable();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::dropIfExists('password_resets');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/application/app/Providers/EventServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
19 | SendEmailVerificationNotification::class,
20 | ],
21 | ];
22 |
23 | /**
24 | * Register any events for your application.
25 | *
26 | * @return void
27 | */
28 | public function boot()
29 | {
30 | parent::boot();
31 |
32 | //
33 | }
34 | }
35 |
--------------------------------------------------------------------------------