├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── DetilPemesanan.php ├── Exceptions │ └── Handler.php ├── Hidangan.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ ├── IndexController.php │ │ ├── PegawaiController.php │ │ ├── PegawaiHidanganController.php │ │ ├── PegawaiPegawaiController.php │ │ ├── PegawaiPelangganController.php │ │ ├── PegawaiPemesananController.php │ │ ├── PegawaiPengaturanController.php │ │ ├── PegawaiReservasiController.php │ │ ├── PegawaiRestoranController.php │ │ ├── PelangganController.php │ │ ├── PelangganHidanganController.php │ │ ├── PelangganPemesananController.php │ │ ├── PelangganPengaturanController.php │ │ └── PelangganReservasiController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Pegawai.php ├── Pelanggan.php ├── Pemesanan.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Reservasi.php └── Restoran.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2018_04_05_050314_create_tb_pelanggan_table.php │ ├── 2018_04_05_050819_create_tb_pegawai_table.php │ ├── 2018_04_05_050957_create_tb_restoran_table.php │ ├── 2018_04_05_051520_create_tb_reservasi_table.php │ ├── 2018_04_05_052444_create_tb_pemesanan_table.php │ ├── 2018_04_05_060155_create_tb_hidangan_table.php │ └── 2018_04_05_060226_create_tb_detil_pemesanan_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── prognet8.sql ├── public ├── .htaccess ├── css │ └── app.css ├── ela │ ├── css │ │ ├── animate.css │ │ ├── helper.css │ │ ├── less │ │ │ ├── advance-widget.less │ │ │ ├── amchart.less │ │ │ ├── badge.less │ │ │ ├── booking-system.less │ │ │ ├── breadcrumb.less │ │ │ ├── button.less │ │ │ ├── calendar.less │ │ │ ├── card.less │ │ │ ├── carousel.less │ │ │ ├── chart.less │ │ │ ├── chartist.less │ │ │ ├── chat.less │ │ │ ├── compose-email.less │ │ │ ├── data-table.less │ │ │ ├── datamap.less │ │ │ ├── error.less │ │ │ ├── favourite_menu.less │ │ │ ├── flot-chart.less │ │ │ ├── font.less │ │ │ ├── fonts.less │ │ │ ├── footer.less │ │ │ ├── form-validation.less │ │ │ ├── forms.less │ │ │ ├── global.less │ │ │ ├── gmap.less │ │ │ ├── header.less │ │ │ ├── invoice-edit.less │ │ │ ├── invoice.less │ │ │ ├── knob.less │ │ │ ├── login.less │ │ │ ├── menu-upload.less │ │ │ ├── mixins.less │ │ │ ├── modal.less │ │ │ ├── morris-chart.less │ │ │ ├── nestable.less │ │ │ ├── order-list.less │ │ │ ├── order-progress.less │ │ │ ├── pagination.less │ │ │ ├── panel.less │ │ │ ├── preloader.less │ │ │ ├── products_1.less │ │ │ ├── products_2.less │ │ │ ├── products_3.less │ │ │ ├── profile-widget.less │ │ │ ├── profile.less │ │ │ ├── progress-bar.less │ │ │ ├── recent-comments.less │ │ │ ├── recent-message.less │ │ │ ├── responsive.less │ │ │ ├── scrollable.less │ │ │ ├── search.less │ │ │ ├── sidebar.less │ │ │ ├── social-media-stats.less │ │ │ ├── style.less │ │ │ ├── tab.less │ │ │ ├── table-export.less │ │ │ ├── table.less │ │ │ ├── timeline.less │ │ │ ├── todo-list.less │ │ │ ├── ui-block-quote.less │ │ │ ├── ui-element-basic.less │ │ │ ├── ui-user-card.less │ │ │ ├── variable.less │ │ │ ├── vector-map.less │ │ │ ├── vertical-carousel.less │ │ │ ├── weather.less │ │ │ └── widget-stat.less │ │ ├── lib │ │ │ ├── amchart │ │ │ │ └── export.css │ │ │ ├── barRating │ │ │ │ └── barRating.css │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.min.css │ │ │ ├── c3 │ │ │ │ └── c3.min.css │ │ │ ├── calendar │ │ │ │ └── fullcalendar.css │ │ │ ├── calendar2 │ │ │ │ ├── pignose.calendar.min.css │ │ │ │ └── semantic.ui.min.css │ │ │ ├── chartist │ │ │ │ └── chartist.min.css │ │ │ ├── data-table │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ ├── buttons.dataTables.min.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ ├── datepicker │ │ │ │ └── bootstrap-datepicker3.min.css │ │ │ ├── dropzone │ │ │ │ └── dropzone.css │ │ │ ├── html5-editor │ │ │ │ └── bootstrap-wysihtml5.css │ │ │ ├── jsgrid │ │ │ │ ├── jsgrid-theme.min.css │ │ │ │ └── jsgrid.min.css │ │ │ ├── line-progress │ │ │ │ └── jquery.lineProgressbar.css │ │ │ ├── lobi-panel │ │ │ │ └── lobipanel.min.css │ │ │ ├── menubar │ │ │ │ └── sidebar.css │ │ │ ├── metismenu │ │ │ │ └── menu.css │ │ │ ├── nestable │ │ │ │ └── nestable.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── preloader │ │ │ │ └── pace.css │ │ │ ├── rangSlider │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ │ └── normalize.css │ │ │ ├── rickshaw-chart │ │ │ │ └── rickshaw.min.css │ │ │ ├── scrollable │ │ │ │ └── scrollable.min.css │ │ │ ├── select2 │ │ │ │ └── select2.min.css │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.css │ │ │ ├── toastr │ │ │ │ └── toastr.min.css │ │ │ └── vector-map │ │ │ │ └── jqvmap.min.css │ │ ├── spinners.css │ │ └── style.css │ ├── icons │ │ ├── flag-icon-css │ │ │ ├── flag-icon.min.css │ │ │ └── flags │ │ │ │ ├── ad.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── af.svg │ │ │ │ ├── ag.svg │ │ │ │ ├── ai.svg │ │ │ │ ├── al.svg │ │ │ │ ├── am.svg │ │ │ │ ├── ao.svg │ │ │ │ ├── aq.svg │ │ │ │ ├── ar.svg │ │ │ │ ├── as.svg │ │ │ │ ├── at.svg │ │ │ │ ├── au.svg │ │ │ │ ├── aw.svg │ │ │ │ ├── ax.svg │ │ │ │ ├── az.svg │ │ │ │ ├── ba.svg │ │ │ │ ├── bb.svg │ │ │ │ ├── bd.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── bh.svg │ │ │ │ ├── bi.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── bm.svg │ │ │ │ ├── bn.svg │ │ │ │ ├── bo.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── br.svg │ │ │ │ ├── bs.svg │ │ │ │ ├── bt.svg │ │ │ │ ├── bv.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── by.svg │ │ │ │ ├── bz.svg │ │ │ │ ├── ca.svg │ │ │ │ ├── cc.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── cf.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── ck.svg │ │ │ │ ├── cl.svg │ │ │ │ ├── cm.svg │ │ │ │ ├── cn.svg │ │ │ │ ├── co.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── cu.svg │ │ │ │ ├── cv.svg │ │ │ │ ├── cw.svg │ │ │ │ ├── cx.svg │ │ │ │ ├── cy.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── de.svg │ │ │ │ ├── dj.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── dm.svg │ │ │ │ ├── do.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── ec.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── eg.svg │ │ │ │ ├── eh.svg │ │ │ │ ├── er.svg │ │ │ │ ├── es.svg │ │ │ │ ├── et.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── fj.svg │ │ │ │ ├── fk.svg │ │ │ │ ├── fm.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── gb.svg │ │ │ │ ├── gd.svg │ │ │ │ ├── ge.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── gi.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── gq.svg │ │ │ │ ├── gr.svg │ │ │ │ ├── gs.svg │ │ │ │ ├── gt.svg │ │ │ │ ├── gu.svg │ │ │ │ ├── gw.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── hk.svg │ │ │ │ ├── hm.svg │ │ │ │ ├── hn.svg │ │ │ │ ├── hr.svg │ │ │ │ ├── ht.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── id.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── il.svg │ │ │ │ ├── im.svg │ │ │ │ ├── in.svg │ │ │ │ ├── io.svg │ │ │ │ ├── iq.svg │ │ │ │ ├── ir.svg │ │ │ │ ├── is.svg │ │ │ │ ├── it.svg │ │ │ │ ├── je.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── jo.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── ke.svg │ │ │ │ ├── kg.svg │ │ │ │ ├── kh.svg │ │ │ │ ├── ki.svg │ │ │ │ ├── km.svg │ │ │ │ ├── kn.svg │ │ │ │ ├── kp.svg │ │ │ │ ├── kr.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── ky.svg │ │ │ │ ├── kz.svg │ │ │ │ ├── la.svg │ │ │ │ ├── lb.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── li.svg │ │ │ │ ├── lk.svg │ │ │ │ ├── lr.svg │ │ │ │ ├── ls.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── ly.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── md.svg │ │ │ │ ├── me.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── mh.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── mm.svg │ │ │ │ ├── mn.svg │ │ │ │ ├── mo.svg │ │ │ │ ├── mp.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── ms.svg │ │ │ │ ├── mt.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── mw.svg │ │ │ │ ├── mx.svg │ │ │ │ ├── my.svg │ │ │ │ ├── mz.svg │ │ │ │ ├── na.svg │ │ │ │ ├── nc.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── nf.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── ni.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── no.svg │ │ │ │ ├── np.svg │ │ │ │ ├── nr.svg │ │ │ │ ├── nu.svg │ │ │ │ ├── nz.svg │ │ │ │ ├── om.svg │ │ │ │ ├── pa.svg │ │ │ │ ├── pe.svg │ │ │ │ ├── pf.svg │ │ │ │ ├── pg.svg │ │ │ │ ├── ph.svg │ │ │ │ ├── pk.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── pn.svg │ │ │ │ ├── pr.svg │ │ │ │ ├── ps.svg │ │ │ │ ├── pt.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── py.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── re.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── rs.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── rw.svg │ │ │ │ ├── sa.svg │ │ │ │ ├── sb.svg │ │ │ │ ├── sc.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── se.svg │ │ │ │ ├── sg.svg │ │ │ │ ├── sh.svg │ │ │ │ ├── si.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── sk.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── sm.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── so.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── st.svg │ │ │ │ ├── sv.svg │ │ │ │ ├── sx.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── sz.svg │ │ │ │ ├── tc.svg │ │ │ │ ├── td.svg │ │ │ │ ├── tf.svg │ │ │ │ ├── tg.svg │ │ │ │ ├── th.svg │ │ │ │ ├── tj.svg │ │ │ │ ├── tk.svg │ │ │ │ ├── tl.svg │ │ │ │ ├── tm.svg │ │ │ │ ├── tn.svg │ │ │ │ ├── to.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── tw.svg │ │ │ │ ├── tz.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── ug.svg │ │ │ │ ├── um.svg │ │ │ │ ├── us.svg │ │ │ │ ├── uy.svg │ │ │ │ ├── uz.svg │ │ │ │ ├── va.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── ve.svg │ │ │ │ ├── vg.svg │ │ │ │ ├── vi.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── vu.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── ws.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── za.svg │ │ │ │ ├── zm.svg │ │ │ │ └── zw.svg │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── fontawesome-webfont3e6e.eot │ │ │ │ ├── fontawesome-webfont3e6e.svg │ │ │ │ ├── fontawesome-webfont3e6e.ttf │ │ │ │ ├── fontawesome-webfont3e6e.woff │ │ │ │ ├── fontawesome-webfont3e6e.woff2 │ │ │ │ └── fontawesome-webfontd41d.eot │ │ ├── linea-icons │ │ │ ├── fonts │ │ │ │ ├── linea-arrows-10.eot │ │ │ │ ├── linea-arrows-10.svg │ │ │ │ ├── linea-arrows-10.ttf │ │ │ │ ├── linea-arrows-10.woff │ │ │ │ ├── linea-arrows-10d41d.eot │ │ │ │ ├── linea-basic-10.eot │ │ │ │ ├── linea-basic-10.svg │ │ │ │ ├── linea-basic-10.ttf │ │ │ │ ├── linea-basic-10.woff │ │ │ │ ├── linea-basic-10d41d.eot │ │ │ │ ├── linea-basic-elaboration-10.eot │ │ │ │ ├── linea-basic-elaboration-10.svg │ │ │ │ ├── linea-basic-elaboration-10.ttf │ │ │ │ ├── linea-basic-elaboration-10.woff │ │ │ │ ├── linea-basic-elaboration-10d41d.eot │ │ │ │ ├── linea-ecommerce-10.eot │ │ │ │ ├── linea-ecommerce-10.svg │ │ │ │ ├── linea-ecommerce-10.ttf │ │ │ │ ├── linea-ecommerce-10.woff │ │ │ │ ├── linea-ecommerce-10d41d.eot │ │ │ │ ├── linea-music-10.eot │ │ │ │ ├── linea-music-10.svg │ │ │ │ ├── linea-music-10.ttf │ │ │ │ ├── linea-music-10.woff │ │ │ │ ├── linea-music-10d41d.eot │ │ │ │ ├── linea-software-10.eot │ │ │ │ ├── linea-software-10.svg │ │ │ │ ├── linea-software-10.ttf │ │ │ │ ├── linea-software-10.woff │ │ │ │ ├── linea-software-10d41d.eot │ │ │ │ ├── linea-weather-10.eot │ │ │ │ ├── linea-weather-10.svg │ │ │ │ ├── linea-weather-10.ttf │ │ │ │ ├── linea-weather-10.woff │ │ │ │ └── linea-weather-10d41d.eot │ │ │ └── linea.css │ │ ├── material-design-iconic-font │ │ │ ├── css │ │ │ │ └── materialdesignicons.min.css │ │ │ └── fonts │ │ │ │ ├── materialdesignicons-webfontd41d.eot │ │ │ │ ├── materialdesignicons-webfontdc99.eot │ │ │ │ ├── materialdesignicons-webfontdc99.svg │ │ │ │ ├── materialdesignicons-webfontdc99.ttf │ │ │ │ ├── materialdesignicons-webfontdc99.woff │ │ │ │ └── materialdesignicons-webfontdc99.woff2 │ │ ├── simple-line-icons │ │ │ ├── css │ │ │ │ └── simple-line-icons.css │ │ │ └── fonts │ │ │ │ ├── Simple-Line-Icons4c82.eot │ │ │ │ ├── Simple-Line-Icons4c82.svg │ │ │ │ ├── Simple-Line-Icons4c82.ttf │ │ │ │ ├── Simple-Line-Icons4c82.woff │ │ │ │ ├── Simple-Line-Icons4c82.woff2 │ │ │ │ └── Simple-Line-Iconsd41d.eot │ │ ├── themify-icons │ │ │ ├── fonts │ │ │ │ ├── themify.ttf │ │ │ │ ├── themify.woff │ │ │ │ ├── themify9f24.eot │ │ │ │ ├── themify9f24.svg │ │ │ │ └── themifyd41d.eot │ │ │ └── themify-icons.css │ │ └── weather-icons │ │ │ ├── css │ │ │ └── weather-icons.min.css │ │ │ └── fonts │ │ │ ├── weathericons-regular-webfont.eot │ │ │ ├── weathericons-regular-webfont.svg │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ ├── weathericons-regular-webfont.woff │ │ │ └── weathericons-regular-webfont.woff2 │ ├── images │ │ ├── logo-text.png │ │ └── logo.png │ └── js │ │ ├── custom.min.js │ │ ├── jquery.slimscroll.js │ │ ├── lib │ │ ├── barRating │ │ │ ├── barRating.init.js │ │ │ └── jquery.barrating.js │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── popper.min.js │ │ ├── c3 │ │ │ ├── c3-init.js │ │ │ ├── c3.min.js │ │ │ └── d3.min.js │ │ ├── calendar-2 │ │ │ ├── moment.latest.min.js │ │ │ ├── pignose.calendar.min.js │ │ │ ├── pignose.init.js │ │ │ ├── prism.min.js │ │ │ └── semantic.ui.min.js │ │ ├── calendar │ │ │ ├── fullcalendar-init.js │ │ │ └── fullcalendar.min.js │ │ ├── chart-amchart │ │ │ ├── amchart-init.js │ │ │ ├── amcharts.js │ │ │ ├── ammap.js │ │ │ ├── amstock.js │ │ │ ├── export.min.js │ │ │ ├── light.js │ │ │ ├── pie.js │ │ │ ├── serial.js │ │ │ └── worldLow.js │ │ ├── chart-js │ │ │ ├── Chart.bundle.js │ │ │ └── chartjs-init.js │ │ ├── chartist │ │ │ ├── chartist-init.js │ │ │ ├── chartist-plugin-tooltip.min.js │ │ │ └── chartist.min.js │ │ ├── chat-widget │ │ │ └── chat-widget-init.js │ │ ├── circle-progress │ │ │ ├── circle-progress-init.js │ │ │ └── circle-progress.min.js │ │ ├── datamap │ │ │ ├── d3.min.js │ │ │ ├── datamap-init.js │ │ │ ├── datamaps.world.min.js │ │ │ └── topojson.js │ │ ├── datatables │ │ │ ├── cdn.datatables.net │ │ │ │ └── buttons │ │ │ │ │ └── 1.2.2 │ │ │ │ │ └── js │ │ │ │ │ ├── buttons.flash.min.js │ │ │ │ │ ├── buttons.html5.min.js │ │ │ │ │ ├── buttons.print.min.js │ │ │ │ │ └── dataTables.buttons.min.js │ │ │ ├── cdn.rawgit.com │ │ │ │ ├── bpampuch │ │ │ │ │ └── pdfmake │ │ │ │ │ │ └── 0.1.18 │ │ │ │ │ │ └── build │ │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ │ └── vfs_fonts.js │ │ │ │ └── google │ │ │ │ │ └── code-prettify │ │ │ │ │ └── master │ │ │ │ │ └── loader │ │ │ │ │ └── run_prettify2102.js │ │ │ ├── cdnjs.cloudflare.com │ │ │ │ └── ajax │ │ │ │ │ └── libs │ │ │ │ │ ├── jqueryui-touch-punch │ │ │ │ │ └── 0.2.3 │ │ │ │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ │ │ └── jszip │ │ │ │ │ └── 2.5.0 │ │ │ │ │ └── jszip.min.js │ │ │ ├── datatables-init.js │ │ │ └── datatables.min.js │ │ ├── datepicker │ │ │ └── bootstrap-datepicker.min.js │ │ ├── dropzone │ │ │ └── dropzone.js │ │ ├── easing │ │ │ ├── jquery.easing.min.js │ │ │ └── stepup-form-init.js │ │ ├── echart │ │ │ ├── dashboard1-init.js │ │ │ ├── echarts-init.js │ │ │ └── echarts.js │ │ ├── flot-chart │ │ │ ├── curvedLines.js │ │ │ ├── excanvas.min.js │ │ │ ├── flot-chart-init.js │ │ │ ├── flot-tooltip │ │ │ │ └── jquery.flot.tooltip.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.threshold.js │ │ │ └── jquery.flot.time.js │ │ ├── form-validation │ │ │ ├── jquery.validate-init.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── gmap │ │ │ ├── gmap.init.js │ │ │ ├── gmapApi.js │ │ │ └── gmaps.js │ │ ├── google-chart │ │ │ ├── google-charts.init.js │ │ │ └── google-jsapi.js │ │ ├── granim │ │ │ ├── granim-init.js │ │ │ └── granim.min.js │ │ ├── highchart │ │ │ ├── highcharts-init.js │ │ │ ├── highcharts-modules-exporting.js │ │ │ ├── highcharts-more.js │ │ │ └── highcharts.js │ │ ├── html5-editor │ │ │ ├── bootstrap-wysihtml5.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ └── wysihtml5-init.js │ │ ├── jquery-ui │ │ │ ├── jquery-ui.min.js │ │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery.nicescroll │ │ │ ├── jquery.nicescroll.js │ │ │ └── jquery.nicescroll.min.js │ │ ├── jquery │ │ │ └── jquery.min.js │ │ ├── jsgrid │ │ │ ├── db.js │ │ │ ├── fields │ │ │ │ ├── jsgrid.field.checkbox.js │ │ │ │ ├── jsgrid.field.control.js │ │ │ │ ├── jsgrid.field.number.js │ │ │ │ ├── jsgrid.field.select.js │ │ │ │ ├── jsgrid.field.text.js │ │ │ │ └── jsgrid.field.textarea.js │ │ │ ├── jsgrid-init.js │ │ │ ├── jsgrid.core.js │ │ │ ├── jsgrid.field.js │ │ │ ├── jsgrid.load-indicator.js │ │ │ ├── jsgrid.load-strategies.js │ │ │ ├── jsgrid.sort-strategies.js │ │ │ └── jsgrid.validation.js │ │ ├── justgage │ │ │ ├── justgage.init.js │ │ │ ├── justgage.js │ │ │ └── raphael-min.js │ │ ├── knob │ │ │ ├── jquery.knob.min.js │ │ │ └── knob.init.js │ │ ├── line-progress │ │ │ ├── jquery.lineProgressbar.js │ │ │ └── line-progress-init.js │ │ ├── menubar │ │ │ └── sidebar.js │ │ ├── metismenu │ │ │ ├── jquery.slimscroll.js │ │ │ ├── metismenu.init.js │ │ │ └── metismenu.min.js │ │ ├── moment │ │ │ └── moment.js │ │ ├── morris-chart │ │ │ ├── dashboard1-init.js │ │ │ ├── morris-init.js │ │ │ ├── morris.js │ │ │ └── raphael-min.js │ │ ├── nestable │ │ │ ├── jquery.nestable.js │ │ │ └── nestable.init.js │ │ ├── owl-carousel │ │ │ ├── owl.carousel-init.js │ │ │ └── owl.carousel.min.js │ │ ├── peitychart │ │ │ ├── jquery.peity.min.js │ │ │ └── peitychart.init.js │ │ ├── portlets │ │ │ ├── portlets-init.js │ │ │ └── portlets.js │ │ ├── preloader │ │ │ └── pace.min.js │ │ ├── rangeSlider │ │ │ ├── ion.rangeSlider.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment.js │ │ │ └── rangeslider.init.js │ │ ├── rating1 │ │ │ ├── jRate.init.js │ │ │ └── jRate.min.js │ │ ├── rickshaw │ │ │ ├── d3.layout.min.js │ │ │ ├── d3.min.js │ │ │ ├── rickshaw-init.js │ │ │ └── rickshaw.min.js │ │ ├── scrollable │ │ │ ├── holder.js │ │ │ ├── jquery-asScrollable.min.js │ │ │ ├── jquery-asScrollbar.js │ │ │ └── scrollable.init.js │ │ ├── select2 │ │ │ └── select2.full.min.js │ │ ├── sparklinechart │ │ │ ├── jquery.sparkline.min.js │ │ │ └── sparkline.init.js │ │ ├── sticky-kit-master │ │ │ └── dist │ │ │ │ └── sticky-kit.min.js │ │ ├── sweetalert │ │ │ ├── sweetalert.init.js │ │ │ └── sweetalert.min.js │ │ ├── toastr │ │ │ ├── toastr.init.js │ │ │ └── toastr.min.js │ │ ├── vector-map │ │ │ ├── country │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ └── jquery.vmap.world.js │ │ │ ├── jquery.vmap.js │ │ │ ├── jquery.vmap.min.js │ │ │ ├── jquery.vmap.sampledata.js │ │ │ └── vector.init.js │ │ └── weather │ │ │ ├── jquery.simpleWeather.min.js │ │ │ └── weather-init.js │ │ ├── scripts.js │ │ └── sidebarmenu.js ├── favicon.ico ├── images │ ├── .gitignore │ ├── hidangan │ │ ├── beef.jpg │ │ ├── heart.jpg │ │ ├── pinepple.jpg │ │ ├── salad.jpeg │ │ ├── spageti.jpg │ │ └── tropical.jpg │ ├── kelompok │ │ ├── adhi.png │ │ ├── boy.png │ │ ├── cen.png │ │ ├── gungwira.png │ │ ├── ilham.png │ │ ├── jhona.png │ │ └── maria.png │ ├── logo-text.png │ ├── logo.png │ └── profil │ │ ├── close.png │ │ └── default.png ├── index.php ├── js │ └── app.js ├── resto │ ├── css │ │ ├── animate.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap.css │ │ ├── flexslider.css │ │ ├── icomoon.css │ │ ├── simple-line-icons.css │ │ └── style.css │ ├── fonts │ │ ├── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── icomoon │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ └── simple-line-icons │ │ │ ├── Simple-Line-Icons.eot │ │ │ ├── Simple-Line-Icons.svg │ │ │ ├── Simple-Line-Icons.ttf │ │ │ ├── Simple-Line-Icons.woff │ │ │ └── Simple-Line-Icons.woff2 │ ├── images │ │ ├── 0103-served-plate_128.png │ │ ├── 0103-served-plate_64.png │ │ ├── 0203-coffee-love.png │ │ ├── 0301-pina-colada.png │ │ ├── 0301-pina-colada_64.png │ │ ├── 0302-steak.png │ │ ├── 0401-vegan.png │ │ ├── 0402-chef.png │ │ ├── Background_menu.jpg │ │ ├── beef.jpg │ │ ├── beries.jpg │ │ ├── carlo drink.jpg │ │ ├── chiken.jpg │ │ ├── dinner1.jpg │ │ ├── download.jpg │ │ ├── fruit.jpg │ │ ├── green juice.jpg │ │ ├── heart.jpg │ │ ├── kepiting1.jpg │ │ ├── loader.gif │ │ ├── logo-text.png │ │ ├── logo.png │ │ ├── long.jpg │ │ ├── long_island.JPG │ │ ├── meat.jpg │ │ ├── mushroom_soup1.jpg │ │ ├── pinepple.jpg │ │ ├── res_img_1.jpg │ │ ├── res_img_2.jpg │ │ ├── res_img_3.jpg │ │ ├── res_img_4.jpg │ │ ├── res_img_5.jpg │ │ ├── res_img_6.jpg │ │ ├── res_img_7.jpg │ │ ├── res_img_8.jpg │ │ ├── ribs.jpg │ │ ├── salad.jpeg │ │ ├── saus.jpeg │ │ ├── sayur.jpg │ │ ├── slide_1.jpg │ │ ├── slide_2.jpg │ │ ├── slide_3.jpg │ │ ├── soft drink.jpg │ │ ├── spageti.jpg │ │ ├── special-menu1.jpg │ │ ├── special-menu2.jpg │ │ ├── special-menu3.jpg │ │ ├── special-menu4.jpg │ │ ├── special-menu5.jpg │ │ ├── steak1.jpg │ │ ├── sushi1.jpg │ │ ├── tropical.jpg │ │ ├── tuna.jpg │ │ ├── type-1.png │ │ ├── type-2.png │ │ ├── type-3.png │ │ ├── type-4.png │ │ ├── wine.jpg │ │ └── wood_1.png │ └── js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap.min.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.min.js │ │ ├── jquery.stellar.min.js │ │ ├── jquery.waypoints.min.js │ │ ├── main.js │ │ ├── modernizr-2.6.2.min.js │ │ └── moment.js ├── robots.txt └── web.config ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── pegawai.blade.php │ └── pelanggan.blade.php │ ├── pegawai │ ├── auth │ │ ├── login.blade.php │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ └── register.blade.php │ ├── hidangan │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── index.blade.php │ ├── pegawai │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── pelanggan │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── pemesanan │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── pengaturan │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── reservasi │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── restoran │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── pelanggan │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── hidangan │ └── index.blade.php │ ├── index.blade.php │ ├── pemesanan │ ├── create.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── pengaturan │ ├── edit.blade.php │ └── index.blade.php │ └── reservasi │ ├── create.blade.php │ └── index.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── screenshot └── index.png ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | 9 | DB_CONNECTION=mysql 10 | DB_HOST=127.0.0.1 11 | DB_PORT=3306 12 | DB_DATABASE=homestead 13 | DB_USERNAME=homestead 14 | DB_PASSWORD=secret 15 | 16 | BROADCAST_DRIVER=log 17 | CACHE_DRIVER=file 18 | SESSION_DRIVER=file 19 | SESSION_LIFETIME=120 20 | QUEUE_DRIVER=sync 21 | 22 | REDIS_HOST=127.0.0.1 23 | REDIS_PASSWORD=null 24 | REDIS_PORT=6379 25 | 26 | MAIL_DRIVER=smtp 27 | MAIL_HOST=smtp.mailtrap.io 28 | MAIL_PORT=2525 29 | MAIL_USERNAME=null 30 | MAIL_PASSWORD=null 31 | MAIL_ENCRYPTION=null 32 | 33 | PUSHER_APP_ID= 34 | PUSHER_APP_KEY= 35 | PUSHER_APP_SECRET= 36 | PUSHER_APP_CLUSTER=mt1 37 | 38 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 39 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 40 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | /.idea 7 | /.vscode 8 | /.vagrant 9 | Homestead.json 10 | Homestead.yaml 11 | npm-debug.log 12 | yarn-error.log 13 | .env -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire') 28 | // ->hourly(); 29 | } 30 | 31 | /** 32 | * Register the commands for the application. 33 | * 34 | * @return void 35 | */ 36 | protected function commands() 37 | { 38 | $this->load(__DIR__.'/Commands'); 39 | 40 | require base_path('routes/console.php'); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/DetilPemesanan.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- 1 | middleware('guest')->except('logout'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | first(); 16 | $pelanggan = [ 17 | 'id_pelanggan' => $row['id_pelanggan'], 18 | 'nama_pelanggan' => $row['nama_pelanggan'], 19 | 'email_pelanggan' => $row['email_pelanggan'], 20 | 'foto_pelanggan' => $row['foto_pelanggan'], 21 | ]; 22 | 23 | $makanan = Hidangan::where('jenis_hidangan', 'Makanan')->get(); 24 | $minuman = Hidangan::where('jenis_hidangan', 'Minuman')->get(); 25 | 26 | return view('pelanggan.hidangan.index', compact('pelanggan', 'makanan', 'minuman')); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/home'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.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 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'App\Listeners\EventListener', 18 | ], 19 | ]; 20 | 21 | /** 22 | * Register any events for your application. 23 | * 24 | * @return void 25 | */ 26 | public function boot() 27 | { 28 | parent::boot(); 29 | 30 | // 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Reservasi.php: -------------------------------------------------------------------------------- 1 | 'bcrypt', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | ], 21 | 22 | 'ses' => [ 23 | 'key' => env('SES_KEY'), 24 | 'secret' => env('SES_SECRET'), 25 | 'region' => 'us-east-1', 26 | ], 27 | 28 | 'sparkpost' => [ 29 | 'secret' => env('SPARKPOST_SECRET'), 30 | ], 31 | 32 | 'stripe' => [ 33 | 'model' => App\User::class, 34 | 'key' => env('STRIPE_KEY'), 35 | 'secret' => env('STRIPE_SECRET'), 36 | ], 37 | 38 | ]; 39 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => realpath(storage_path('framework/views')), 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | define(App\User::class, function (Faker $faker) { 17 | return [ 18 | 'name' => $faker->name, 19 | 'email' => $faker->unique()->safeEmail, 20 | 'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret 21 | 'remember_token' => str_random(10), 22 | ]; 23 | }); 24 | -------------------------------------------------------------------------------- /database/migrations/2018_04_05_050957_create_tb_restoran_table.php: -------------------------------------------------------------------------------- 1 | increments('id_restoran'); 18 | $table->string('nama_restoran'); 19 | $table->string('alamat_restoran'); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::dropIfExists('tb_restoran'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2018_04_05_060155_create_tb_hidangan_table.php: -------------------------------------------------------------------------------- 1 | increments('id_hidangan'); 18 | $table->string('nama_hidangan'); 19 | $table->string('jenis_hidangan'); 20 | $table->unsignedInteger('harga_hidangan'); 21 | $table->string('foto_hidangan'); 22 | $table->timestamps(); 23 | }); 24 | DB::statement("ALTER TABLE tb_hidangan MODIFY jenis_hidangan ENUM('Makanan', 'Minuman') DEFAULT NULL;"); 25 | DB::statement("ALTER TABLE tb_hidangan MODIFY foto_hidangan VARCHAR(255) DEFAULT NULL;"); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('tb_hidangan'); 36 | } 37 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.18", 14 | "bootstrap": "^4.0.0", 15 | "popper.js": "^1.12", 16 | "cross-env": "^5.1", 17 | "jquery": "^3.2", 18 | "laravel-mix": "^2.0", 19 | "lodash": "^4.17.4", 20 | "vue": "^2.5.7" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests/Feature 14 | 15 | 16 | 17 | ./tests/Unit 18 | 19 | 20 | 21 | 22 | ./app 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Handle Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/ela/css/less/advance-widget.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .media-text-right { 4 | text-align: right; 5 | } 6 | 7 | .media-text-left { 8 | text-align: left; 9 | } 10 | 11 | .boxshadow-none { 12 | box-shadow: none; 13 | } 14 | 15 | .progress-sm { 16 | height: 8px; 17 | } 18 | 19 | .bg-warning-dark { 20 | background: @warning-dark; 21 | } 22 | 23 | .bg-info-dark { 24 | background: @info-dark; 25 | } 26 | 27 | .bg-danger-dark { 28 | background: @danger-dark; 29 | } 30 | 31 | .bg-success-dark { 32 | background: @success-dark; 33 | } 34 | 35 | .bg-primary-dark { 36 | background: @primary-dark; 37 | } 38 | 39 | .widget-card-circle { 40 | i { 41 | font-size: 30px; 42 | left: 0; 43 | line-height: 97px; 44 | right: 0; 45 | text-align: center; 46 | } 47 | } 48 | 49 | .widget-line-list { 50 | li { 51 | display: inline-block; 52 | font-size: 1.2em; 53 | line-height: 27px; 54 | padding: 5px 20px 0 15px; 55 | 56 | span { 57 | font-size: 14px; 58 | } 59 | } 60 | } -------------------------------------------------------------------------------- /public/ela/css/less/booking-system.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .booking-system-feedback { 3 | top: 5px !important; 4 | right: 15px; 5 | } 6 | .booking-system-top { 7 | padding-top: 15px; 8 | } 9 | .media { 10 | // padding-top: 20px; 11 | } 12 | .media-body { 13 | // padding-top: 9px; 14 | vertical-align: middle; 15 | span { 16 | font-size: 10px; 17 | color: @primary; 18 | } 19 | p { 20 | color: @text-light; 21 | line-height: 15px; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/ela/css/less/breadcrumb.less: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | margin-bottom: 0; 3 | } 4 | 5 | .page-titles { 6 | background: #ffffff; 7 | margin: 0 0 30px; 8 | padding: 15px 10px; 9 | position: relative; 10 | z-index: 10; 11 | -webkit-box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1); 12 | box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1); 13 | 14 | h3 { 15 | margin-bottom: 0; 16 | margin-top: 0; 17 | } 18 | 19 | .breadcrumb { 20 | padding: 0; 21 | background: transparent; 22 | font-size: 14px; 23 | 24 | li { 25 | margin-top: 0; 26 | margin-bottom: 0; 27 | } 28 | 29 | .breadcrumb-item+.breadcrumb-item { 30 | &:before { 31 | content: "\e649"; 32 | font-family: themify; 33 | color: #a6b7bf; 34 | font-size: 11px; 35 | } 36 | } 37 | 38 | .breadcrumb-item.active { 39 | color: #99abb4; 40 | } 41 | } 42 | } -------------------------------------------------------------------------------- /public/ela/css/less/carousel.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .testimonial-widget-one { 4 | // background: @pink; 5 | .testimonial-content { 6 | text-align: center; 7 | } 8 | 9 | .testimonial-text { 10 | margin-bottom: 15px; 11 | } 12 | 13 | .testimonial-author-position { 14 | font-family: @mol; 15 | position: relative; 16 | top: -5px; 17 | margin-top: 5px; 18 | text-align: center; 19 | font-size: 12px; 20 | } 21 | 22 | .testimonial-author { 23 | padding-top: 15px; 24 | // margin-right: 75px; 25 | position: relative; 26 | top: -5px; 27 | font-weight: 600; 28 | color: @white; 29 | text-align: center; 30 | } 31 | 32 | .testimonial-author-img { 33 | border-radius: 100px; 34 | height: 50px !important; 35 | width: 50px !important; 36 | margin: 0 auto; 37 | } 38 | } -------------------------------------------------------------------------------- /public/ela/css/less/chart.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .cpu-load { 3 | width: 100%; 4 | height: 272px; 5 | font-size: 14px; 6 | line-height: 1.2em; 7 | } 8 | 9 | .cpu-load-data-content { 10 | font-size: 18px; 11 | font-weight: 400; 12 | line-height: 40px; 13 | } 14 | 15 | .cpu-load-data { 16 | margin-bottom: 30px; 17 | li { 18 | display: inline-block; 19 | width: 32.5%; 20 | text-align: center; 21 | border-right: 1px solid @border; 22 | &:last-child{ 23 | border-right: 0px; 24 | } 25 | } 26 | } 27 | 28 | 29 | #barChart{ 30 | height: 400px!important; 31 | } -------------------------------------------------------------------------------- /public/ela/css/less/datamap.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | 5 | 6 | .datamap-sales-hover-tooltip{ 7 | background: @dark; 8 | font-family: @mol; 9 | padding: 5px 10px; 10 | color: @white; 11 | font-weight: 400; 12 | font-size: 12px; 13 | text-transform: capitalize; 14 | border-radius: 3px; 15 | } 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /public/ela/css/less/error.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .error-box { 4 | height: 100%; 5 | position: fixed; 6 | width: 100%; 7 | } 8 | 9 | .error-box .footer { 10 | left: 0; 11 | right: 0; 12 | width: 100%; 13 | } 14 | 15 | .error-body { 16 | left: 0; 17 | position: absolute; 18 | right: 0; 19 | top: 50%; 20 | transform: translateY(-50%); 21 | } 22 | 23 | .error-body h1 { 24 | font-size: 150px; 25 | font-weight: 900; 26 | line-height: 210px; 27 | color: @dark; 28 | } -------------------------------------------------------------------------------- /public/ela/css/less/favourite_menu.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .favourite-menu-details{ 5 | .table>tbody>tr>td{ 6 | border-top: none; 7 | border-bottom: 1px solid @border; 8 | } 9 | .favourite-menu-img{ 10 | border-right: 1px solid @border; 11 | margin-bottom: 25px; 12 | width: 120px; 13 | } 14 | 15 | .favourite-menu-des{ 16 | margin-top: 40px; 17 | margin-right: 465px; 18 | 19 | .product_name{ 20 | h4{ 21 | font-weight: 600; 22 | text-align: left; 23 | } 24 | } 25 | } 26 | 27 | 28 | 29 | .favourite-menu-button{ 30 | margin-top: 40px; 31 | .prdt_add_to_curt{ 32 | padding-top: 10px; 33 | button{ 34 | font-size: 11px; 35 | text-transform: uppercase; 36 | font-weight: 600; 37 | } 38 | } 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /public/ela/css/less/flot-chart.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .flotTip { 4 | background: @black; 5 | border: 1px solid @black; 6 | padding: 5px 15px; 7 | color: @white; 8 | } 9 | 10 | .flot-container { 11 | box-sizing: border-box; 12 | width: 100%; 13 | height: 275px; 14 | padding: 20px 15px 15px; 15 | margin: 15px auto 30px; 16 | background: transparent; 17 | } 18 | 19 | .flot-pie-container { 20 | height: 275px; 21 | } 22 | 23 | .flotBar-container { 24 | height: 275px; 25 | } 26 | 27 | .flot-line { 28 | width: 100%; 29 | height: 100%; 30 | font-size: 14px; 31 | line-height: 1.2em; 32 | } 33 | 34 | .legend table { 35 | border-spacing: 5px; 36 | } 37 | 38 | #chart1, 39 | #flotBar, 40 | #flotCurve { 41 | width: 100%; 42 | height: 275px; 43 | } 44 | 45 | .cpu-load { 46 | height: 345px; 47 | } -------------------------------------------------------------------------------- /public/ela/css/less/font.less: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Open+Sans:300i,400,600,700,800'); 2 | @import url(../icons/font-awesome/css/font-awesome.min.css); 3 | @import url(../icons/simple-line-icons/css/simple-line-icons.css); 4 | @import url(../icons/weather-icons/css/weather-icons.min.css); 5 | @import url(../icons/linea-icons/linea.css); 6 | @import url(../icons/themify-icons/themify-icons.css); 7 | @import url(../icons/flag-icon-css/flag-icon.min.css); 8 | @import url(../icons/material-design-iconic-font/css/materialdesignicons.min.css); 9 | @import url(spinners.css); 10 | @import url(animate.css); -------------------------------------------------------------------------------- /public/ela/css/less/footer.less: -------------------------------------------------------------------------------- 1 | .footer { 2 | background: #ffffff none repeat scroll 0 0; 3 | border-top: 1px solid rgba(120, 130, 140, 0.13); 4 | // bottom: 0; 5 | color: #67757c; 6 | left: 0; 7 | padding: 17px 15px; 8 | position: absolute; 9 | right: 0; 10 | } 11 | 12 | .footer { 13 | left: 240px; 14 | } -------------------------------------------------------------------------------- /public/ela/css/less/form-validation.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .is-invalid { 5 | .form-control { 6 | border-color: @danger; 7 | } 8 | } 9 | 10 | .invalid-feedback { 11 | color: #ef5350; 12 | display: none; 13 | margin-top: 0.25rem; 14 | } 15 | 16 | .is-invalid .invalid-feedback, 17 | .is-invalid .invalid-tooltip { 18 | display: block; 19 | } -------------------------------------------------------------------------------- /public/ela/css/less/gmap.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .map { 4 | width: 100%; 5 | height: 400px; 6 | } -------------------------------------------------------------------------------- /public/ela/css/less/knob.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .superpose { 3 | color: #EEE; 4 | height: 350px; 5 | width: 100% 6 | } 7 | 8 | .superclock { 9 | position: relative; 10 | width: 300px; 11 | margin: auto 12 | } 13 | 14 | .superclock1{ 15 | position:absolute;left:10px;top:10px 16 | } 17 | 18 | .superclock2{ 19 | position:absolute;left:60px;top:60px 20 | } 21 | 22 | .superclock3{ 23 | position:absolute;left:110px;top:110px 24 | } 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/ela/css/less/mixins.less: -------------------------------------------------------------------------------- 1 | /* transitions 2 | ------------------*/ 3 | .t5s{ 4 | -webkit-transition: all 0.5s ease-in-out 0s; 5 | -moz-transition: all 0.5s ease-in-out 0s; 6 | -o-transition: all 0.5s ease-in-out 0s; 7 | -ms-transition: all 0.5s ease-in-out 0s; 8 | transition: all 0.5s ease-in-out 0s; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /public/ela/css/less/modal.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .modal-dialog { 3 | margin: 30px auto; 4 | position: relative; 5 | top: 50%; 6 | transform: translateY(-50%) !important; 7 | width: 70%; 8 | } 9 | 10 | .modal-header { 11 | .close { 12 | font-size: 14px; 13 | margin-right: 15px; 14 | margin-top: 5px; 15 | } 16 | } 17 | 18 | .modal-content { 19 | border-radius: 3px; 20 | } -------------------------------------------------------------------------------- /public/ela/css/less/morris-chart.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .morris-hover { 4 | position: absolute; 5 | z-index: 1; 6 | } 7 | 8 | .morris-hover.morris-default-style .morris-hover-row-label { 9 | font-weight: bold; 10 | margin: 0.25em 0; 11 | } 12 | 13 | .morris-hover.morris-default-style .morris-hover-point { 14 | white-space: nowrap; 15 | margin: 0.1em 0; 16 | } 17 | 18 | .morris-hover.morris-default-style { 19 | border-radius: 2px; 20 | padding: 10px 12px; 21 | color: #666; 22 | background: rgba(0, 0, 0, 0.7); 23 | border: none; 24 | color: #fff!important; 25 | } 26 | 27 | .morris-hover-point { 28 | color: rgba(257, 257, 257, 0.8)!important; 29 | } 30 | 31 | #morris-bar-chart, 32 | #morris-line-chart { 33 | height: 300px; 34 | } -------------------------------------------------------------------------------- /public/ela/css/less/nestable.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .nestable-cart{ 4 | overflow: hidden; 5 | } 6 | 7 | 8 | .dd-handle, .dd3-content { 9 | color: #000!important; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /public/ela/css/less/order-list.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .order-list-item { 3 | table { 4 | tbody>tr>td { 5 | padding-top: 8px; 6 | border-top: 1px solid @border; 7 | } 8 | thead>tr>th { 9 | border-bottom: 1px solid @border; 10 | } 11 | } 12 | thead { 13 | background: @primary; 14 | text-align: left; 15 | th { 16 | color: @white; 17 | font-weight: bold; 18 | } 19 | } 20 | tbody { 21 | background: @white; 22 | text-align: left; 23 | td { 24 | color: #444444; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /public/ela/css/less/order-progress.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .current-progress { 5 | margin-top: 15px; 6 | } 7 | 8 | 9 | 10 | .progress-content { 11 | margin-bottom: 20px; 12 | } 13 | 14 | .progress-content { 15 | &:last-child{ 16 | margin-bottom: 0px; 17 | } 18 | 19 | } 20 | 21 | 22 | .current-progressbar{ 23 | margin-top: 3px; 24 | .progress{ 25 | height: 15px; 26 | margin: 0px; 27 | box-shadow: none; 28 | } 29 | .progress-bar{ 30 | box-shadow: 0px; 31 | line-height: 14px; 32 | font-size: 11px; 33 | box-shadow: none; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /public/ela/css/less/products_2.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .product-2-details{ 5 | .table>tbody>tr>td{ 6 | border: none; 7 | } 8 | .product-2-img{ } 9 | 10 | .product-2-des{ 11 | margin-top: 25px; 12 | .product_name{ 13 | h4{ 14 | font-size: 15px; 15 | font-weight: 600; 16 | } 17 | } 18 | .product_des{ 19 | p{ 20 | font-size: 13px; 21 | font-style: italic; 22 | } 23 | } 24 | } 25 | 26 | 27 | 28 | .product-2-button{ 29 | border-left: 1px solid @border; 30 | margin-top: 25px; 31 | .prdt_add_to_curt{ 32 | padding-top: 10px; 33 | button{ 34 | font-size: 11px; 35 | text-transform: uppercase; 36 | font-weight: 600; 37 | } 38 | } 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /public/ela/css/less/products_3.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .product-3-img{ 4 | img{ 5 | width: 100%; 6 | } 7 | } 8 | 9 | .product_details_3{ 10 | padding: 15px 0px; 11 | .product_name{ 12 | h4{ 13 | font-size: 15px; 14 | font-weight: 600; 15 | } 16 | } 17 | .product_des{ 18 | padding-bottom: 5px; 19 | p{ 20 | // font-size: 11px; 21 | // font-style: italic; 22 | } 23 | } 24 | 25 | .prdt_add_to_curt{ 26 | padding-top: 10px; 27 | button{ 28 | // font-size: 11px; 29 | text-transform: uppercase; 30 | font-weight: 600; 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /public/ela/css/less/recent-comments.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .recent-comment { 3 | .media { 4 | border-bottom: 1px solid @border; 5 | padding-bottom: 10px; 6 | padding-top: 10px; 7 | } 8 | .media-left { 9 | padding-right: 25px; 10 | img { 11 | border-radius: 100px; 12 | width: 40px; 13 | } 14 | } 15 | .media-body { 16 | position: relative; 17 | h4 { 18 | font-size: 16px; 19 | margin-bottom: 10px; 20 | } 21 | p { 22 | margin-bottom: 10px; 23 | line-height: 16px; 24 | color: @text-light; 25 | } 26 | } 27 | .comment-date { 28 | position: absolute; 29 | right: 0; 30 | top: 0; 31 | color: @text; 32 | font-family: @mol; 33 | font-size: 12px; 34 | } 35 | } 36 | .comment-action { 37 | float: left; 38 | .badge { 39 | text-transform: uppercase; 40 | font-family: @mol; 41 | } 42 | i { 43 | padding: 0 5px; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /public/ela/css/less/recent-message.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .recent-meaasge { 4 | margin-top: 15px; 5 | 6 | .media { 7 | border-bottom: 1px solid @border; 8 | padding-top: 10px; 9 | padding-bottom: 10px; 10 | } 11 | 12 | .media-left { 13 | padding-right: 25px; 14 | 15 | img { 16 | border-radius: 100px; 17 | width: 50px; 18 | } 19 | } 20 | 21 | .media-body { 22 | position: relative; 23 | 24 | h4 { 25 | font-size: 16px; 26 | } 27 | 28 | p { 29 | margin-top: 10px; 30 | margin-bottom: 10px; 31 | } 32 | } 33 | } 34 | 35 | .meaasge-date { 36 | float: right; 37 | color: @text; // font-family: @mol; 38 | position: absolute; 39 | right: 0; 40 | top: 0; 41 | font-size: 12px; 42 | } -------------------------------------------------------------------------------- /public/ela/css/less/scrollable.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .example { 3 | overflow: hidden; 4 | border: 1px solid @border; 5 | -webkit-box-shadow: 1px 1px 2px 0px rgba(200, 200, 200, 0.3); 6 | -moz-box-shadow: 1px 1px 2px 0px rgba(200, 200, 200, 0.3); 7 | box-shadow: 1px 1px 2px 0px rgba(200, 200, 200, 0.3); 8 | background-color: @white-light; 9 | text-align: justify; 10 | p { 11 | padding: 20px 20px 0px 20px; 12 | font-size: 12px; 13 | } 14 | } 15 | 16 | .box, 17 | .simple { 18 | height: 300px; 19 | } 20 | 21 | .scrollable-auto-x{ 22 | overflow-x: auto; overflow-y: hidden 23 | } 24 | 25 | .scrollable-auto-y{ 26 | overflow-y: auto; overflow-x: hidden 27 | } 28 | 29 | .scrollable-auto{ 30 | overflow: auto 31 | } -------------------------------------------------------------------------------- /public/ela/css/less/search.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .header-search { 4 | float: right; 5 | margin-left: 15px; 6 | position: relative; 7 | 8 | .form-control { 9 | height: 36px; 10 | width: 250px; 11 | border-radius: 5px; 12 | font-size: 14px; 13 | } 14 | 15 | i { 16 | position: absolute; 17 | right: 5px; 18 | top: 5px; 19 | cursor: pointer; 20 | height: 30px; 21 | padding: 5px; 22 | width: 30px; 23 | } 24 | } -------------------------------------------------------------------------------- /public/ela/css/less/social-media-stats.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .media-stats-content{ 5 | // margin-top: 15px; 6 | .stats-content{ 7 | padding: 30px 0px; 8 | .stats-digit{ 9 | font-size: 24px; 10 | font-weight: 300; 11 | margin-bottom: 10px; 12 | } 13 | .stats-text{ 14 | font-size: 14px; 15 | } 16 | .table{ 17 | td{ 18 | line-height: 40px!important; 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /public/ela/css/less/table-export.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | @media (max-width: 667px) { 5 | .dt-buttons{ 6 | margin-left: 10px; 7 | } 8 | 9 | } 10 | @media (max-width: 480px) { 11 | .dt-buttons{ 12 | display: inline-block; 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /public/ela/css/less/ui-user-card.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | 5 | .height-150{ 6 | height: 150px; 7 | } 8 | 9 | .social-connect { 10 | 11 | ul{ 12 | li{ 13 | display: inline-block; 14 | a{ 15 | display: inline-block; 16 | margin: 0 5px; 17 | padding: 12px 15px; 18 | border-radius: 4px; 19 | } 20 | } 21 | } 22 | } 23 | .user-card-absolute { 24 | top: 115px; 25 | left: 0; 26 | right: 0; 27 | } 28 | .box-shadow { 29 | box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); 30 | } 31 | .social-pad{ 32 | padding: 40px 30px 110px; 33 | } 34 | .round-img{ 35 | img{ 36 | border-radius: 100px; 37 | } 38 | } -------------------------------------------------------------------------------- /public/ela/css/less/variable.less: -------------------------------------------------------------------------------- 1 | /* Font Variable 2 | ----------------------*/ 3 | // @mont:'Montserrat', sans-serif; 4 | // @mol:'MontserratLight', sans-serif; 5 | @mont: 'Poppins', sans-serif; 6 | @mol: 'Poppins', sans-serif; /* Color Variable 7 | -----------------------*/ 8 | @primary: #4680ff; 9 | @success: #26DAD2; //03A9F5 10 | @info: #62d1f3; 11 | @danger: #fc6180; 12 | @warning: #ffb64d; 13 | @pink: #e6a1f2; 14 | @dark: #444C67; 15 | @default: #878787; 16 | @text: #455a64; 17 | @text-light: #99abb4; 18 | @border: #e4e7ec; 19 | @deep: #aaa; 20 | @ash: #f5f5f5; 21 | @warning-dark: #e7b63a; 22 | @success-dark: #2ed3aa; 23 | @info-dark: #8b67c9; 24 | @danger-dark: #e63327; 25 | @primary-dark: #0095e1; /* Solid Color 26 | ------------------*/ 27 | @white: #fff; 28 | @white-light: #eef5f9; 29 | @black: #252525; 30 | @border: #e7e7e7; /* Brand color 31 | ----------------------*/ 32 | @facebook: #3b5998; 33 | @twitter: #1da1f2; 34 | @youtube: #cd201f; 35 | @google-plus: #dd4b39; 36 | @linkedin: #007bb6; -------------------------------------------------------------------------------- /public/ela/css/less/vector-map.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .vmap{ 4 | width: 100%; 5 | height: 400px; 6 | } 7 | -------------------------------------------------------------------------------- /public/ela/css/less/weather.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .weather-one { 4 | // background: @primary; 5 | i { 6 | font-size: 100px; 7 | position: relative; 8 | top: 5px; 9 | color: @white; 10 | } 11 | 12 | h2 { 13 | display: inline-block; 14 | float: right; 15 | font-size: 48px; 16 | color: @white; 17 | } 18 | 19 | .city { 20 | position: relative; 21 | text-align: right; 22 | top: -25px; 23 | } 24 | 25 | .currently { 26 | font-size: 16px; 27 | font-weight: 400; 28 | position: relative; 29 | top: 25px; 30 | } 31 | 32 | .celcious { 33 | text-align: right; 34 | font-size: 20px; 35 | color: @white; 36 | } 37 | } -------------------------------------------------------------------------------- /public/ela/css/lib/line-progress/jquery.lineProgressbar.css: -------------------------------------------------------------------------------- 1 | /** Progressbar class css*/ 2 | .progressbar { 3 | width: 100%; 4 | margin-top: 5px; 5 | margin-bottom: 9.5px; 6 | position: relative; 7 | background-color: #eef1f6; 8 | box-shadow: inset 0px 1px 1px rgba(0,0,0,.1); 9 | } 10 | 11 | .proggress{ 12 | height: 8px; 13 | width: 10px; 14 | background-color: #3498db; 15 | } 16 | 17 | .percentCount{ 18 | float:right; 19 | margin-top: 10px; 20 | clear: both; 21 | font-weight: bold; 22 | font-family: Arial 23 | } -------------------------------------------------------------------------------- /public/ela/css/lib/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.0 3 | * Copyright 2013-2016 David Deutsch 4 | * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE) 5 | */ 6 | .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} -------------------------------------------------------------------------------- /public/ela/css/lib/preloader/pace.css: -------------------------------------------------------------------------------- 1 | .pace { 2 | -webkit-pointer-events: none; 3 | pointer-events: none; 4 | 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background: #2299dd; 16 | position: fixed; 17 | z-index: 2000; 18 | top: 0; 19 | right: 100%; 20 | width: 100%; 21 | height: 2px; 22 | } -------------------------------------------------------------------------------- /public/ela/css/lib/vector-map/jqvmap.min.css: -------------------------------------------------------------------------------- 1 | .jqvmap-label, 2 | .jqvmap-pin { 3 | pointer-events: none 4 | } 5 | .jqvmap-label { 6 | position: absolute; 7 | display: none; 8 | -webkit-border-radius: 3px; 9 | -moz-border-radius: 3px; 10 | border-radius: 3px; 11 | background: #292929; 12 | color: #fff; 13 | font-family: sans-serif, Verdana; 14 | font-size: smaller; 15 | padding: 3px 16 | } 17 | .jqvmap-zoomin, 18 | .jqvmap-zoomout { 19 | position: absolute; 20 | left: 10px; 21 | -webkit-border-radius: 3px; 22 | -moz-border-radius: 3px; 23 | border-radius: 3px; 24 | background: #000; 25 | padding: 3px; 26 | color: #fff; 27 | width: 15px; 28 | height: 15px; 29 | cursor: pointer; 30 | line-height: 10px; 31 | text-align: center 32 | } 33 | .jqvmap-zoomin { 34 | top: 10px 35 | } 36 | .jqvmap-zoomout { 37 | top: 30px 38 | } 39 | .jqvmap-region { 40 | cursor: pointer 41 | } 42 | .jqvmap-ajax_response { 43 | width: 100%; 44 | height: 500px 45 | } -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flag of the People's Republic of China 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/eh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/fm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ge.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/il.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/jo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/kn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/kp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/lr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/nr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/rw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flag of South Sudan 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/st.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ws.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/ela/icons/flag-icon-css/flags/za.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.eot -------------------------------------------------------------------------------- /public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.ttf -------------------------------------------------------------------------------- /public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff -------------------------------------------------------------------------------- /public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff2 -------------------------------------------------------------------------------- /public/ela/icons/font-awesome/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/font-awesome/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-arrows-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-arrows-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-arrows-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-arrows-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-arrows-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-arrows-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-arrows-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-arrows-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-basic-elaboration-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-ecommerce-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-ecommerce-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-ecommerce-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-ecommerce-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-ecommerce-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-ecommerce-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-ecommerce-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-ecommerce-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-music-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-music-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-music-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-music-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-music-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-music-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-music-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-music-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-software-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-software-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-software-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-software-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-software-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-software-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-software-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-software-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-weather-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-weather-10.eot -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-weather-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-weather-10.ttf -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-weather-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-weather-10.woff -------------------------------------------------------------------------------- /public/ela/icons/linea-icons/fonts/linea-weather-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/linea-icons/fonts/linea-weather-10d41d.eot -------------------------------------------------------------------------------- /public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontd41d.eot -------------------------------------------------------------------------------- /public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.eot -------------------------------------------------------------------------------- /public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.ttf -------------------------------------------------------------------------------- /public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff -------------------------------------------------------------------------------- /public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff2 -------------------------------------------------------------------------------- /public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot -------------------------------------------------------------------------------- /public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.ttf -------------------------------------------------------------------------------- /public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff -------------------------------------------------------------------------------- /public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2 -------------------------------------------------------------------------------- /public/ela/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot -------------------------------------------------------------------------------- /public/ela/icons/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /public/ela/icons/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /public/ela/icons/themify-icons/fonts/themify9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/themify-icons/fonts/themify9f24.eot -------------------------------------------------------------------------------- /public/ela/icons/themify-icons/fonts/themifyd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/themify-icons/fonts/themifyd41d.eot -------------------------------------------------------------------------------- /public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/icons/weather-icons/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /public/ela/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/images/logo-text.png -------------------------------------------------------------------------------- /public/ela/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonarendra/website-restoran-laravel/20a3b8ebfb57c8f2139a3703ddbb948be002ff97/public/ela/images/logo.png -------------------------------------------------------------------------------- /public/ela/js/lib/calendar-2/pignose.init.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | "use strict"; 3 | $('.year-calendar').pignoseCalendar({ 4 | theme: 'blue' // light, dark, blue 5 | }); 6 | 7 | $('input.calendar').pignoseCalendar({ 8 | format: 'YYYY-MM-DD' // date format string. (2017-02-02) 9 | }); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /public/ela/js/lib/granim/granim-init.js: -------------------------------------------------------------------------------- 1 | //(function ($) { 2 | // "use strict"; 3 | // 4 | // 5 | // 6 | 7 | var granimInstance = new Granim({ 8 | element: '#canvas-basic', 9 | name: 'basic-gradient', 10 | direction: 'left-right', 11 | opacity: [1, 1], 12 | isPausedWhenNotInView: true, 13 | states : { 14 | "default-state": { 15 | gradients: [ 16 | ['#AA076B', '#61045F'], 17 | ['#02AAB0', '#00CDAC'], 18 | ['#DA22FF', '#9733EE'] 19 | ] 20 | } 21 | } 22 | }); 23 | 24 | 25 | 26 | 27 | //})(jQuery); -------------------------------------------------------------------------------- /public/ela/js/lib/html5-editor/wysihtml5-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | $('.textarea_editor').wysihtml5(); 4 | 5 | 6 | }); -------------------------------------------------------------------------------- /public/ela/js/lib/jsgrid/fields/jsgrid.field.textarea.js: -------------------------------------------------------------------------------- 1 | (function(jsGrid, $, undefined) { 2 | 3 | var TextField = jsGrid.TextField; 4 | 5 | function TextAreaField(config) { 6 | TextField.call(this, config); 7 | } 8 | 9 | TextAreaField.prototype = new TextField({ 10 | 11 | insertTemplate: function() { 12 | if(!this.inserting) 13 | return ""; 14 | 15 | return this.insertControl = this._createTextArea(); 16 | }, 17 | 18 | editTemplate: function(value) { 19 | if(!this.editing) 20 | return this.itemTemplate.apply(this, arguments); 21 | 22 | var $result = this.editControl = this._createTextArea(); 23 | $result.val(value); 24 | return $result; 25 | }, 26 | 27 | _createTextArea: function() { 28 | return $("