├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── adminassets ├── bs3 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ ├── blue-theme.css │ ├── bootstrap-reset.css │ ├── bootstrap-switch.css │ ├── bucket-ico-fonts.css │ ├── clndr.css │ ├── default-theme.css │ ├── green-theme.css │ ├── invoice-print.css │ ├── jquery.steps.css │ ├── orange-theme.css │ ├── purple-theme.css │ ├── style-responsive.css │ ├── style.css │ ├── table-responsive.css │ └── turquoise-theme.css ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── spinning.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _spinning.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── images │ ├── 404.png │ ├── 500.png │ ├── acc-expand.png │ ├── avatar-mini-2.jpg │ ├── avatar-mini-3.jpg │ ├── avatar-mini-4.jpg │ ├── avatar-mini.jpg │ ├── avatar1.jpg │ ├── avatar1_small.jpg │ ├── bucket-logo.png │ ├── chat-avatar2.jpg │ ├── chat-user-thumb-f.png │ ├── chat-user-thumb.png │ ├── crazy-price.jpg │ ├── customSelect-arrow.gif │ ├── details_close.png │ ├── details_open.png │ ├── flags │ │ ├── de.png │ │ ├── es.png │ │ ├── fr.png │ │ ├── ru.png │ │ └── us.png │ ├── gallery │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ └── image5.jpg │ ├── input-spinner.gif │ ├── lock-screen.jpg │ ├── lock_thumb.jpg │ ├── logo.png │ ├── nav-expand.png │ ├── product_img.png │ ├── search-icon.png │ ├── sm-img-1.jpg │ ├── sm-img-2.jpg │ ├── sm-img-3.jpg │ ├── top-arrow.png │ ├── twitter_corner_black.png │ ├── twitter_corner_blue.png │ └── weather_image.jpg └── js │ ├── advanced-datatable │ ├── css │ │ ├── demo_page.css │ │ ├── demo_table.css │ │ ├── demo_table_jui.css │ │ ├── jquery.dataTables.css │ │ └── jquery.dataTables_themeroller.css │ ├── images │ │ ├── Sorting icons.psd │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── favicon.ico │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ └── jquery.js │ └── src │ │ ├── DataTables.js │ │ ├── api │ │ ├── api.internal.js │ │ ├── api.methods.js │ │ └── api.static.js │ │ ├── core │ │ ├── core.ajax.js │ │ ├── core.columns.js │ │ ├── core.constructor.js │ │ ├── core.data.js │ │ ├── core.draw.js │ │ ├── core.filter.js │ │ ├── core.info.js │ │ ├── core.init.js │ │ ├── core.length.js │ │ ├── core.page.js │ │ ├── core.processing.js │ │ ├── core.scrolling.js │ │ ├── core.sizing.js │ │ ├── core.sort.js │ │ ├── core.state.js │ │ └── core.support.js │ │ ├── ext │ │ ├── ext.classes.js │ │ ├── ext.paging.js │ │ ├── ext.sorting.js │ │ └── ext.types.js │ │ └── model │ │ ├── model.column.js │ │ ├── model.defaults.columns.js │ │ ├── model.defaults.js │ │ ├── model.ext.js │ │ ├── model.row.js │ │ ├── model.search.js │ │ └── model.settings.js │ ├── advanced-form.js │ ├── bootstrap-colorpicker │ ├── css │ │ └── colorpicker.css │ ├── img │ │ ├── alpha.png │ │ ├── hue.png │ │ └── saturation.png │ ├── js │ │ └── bootstrap-colorpicker.js │ └── less │ │ └── colorpicker.less │ ├── bootstrap-datepicker │ ├── css │ │ └── datepicker.css │ ├── js │ │ └── bootstrap-datepicker.js │ └── less │ │ └── datepicker.less │ ├── bootstrap-daterangepicker │ ├── README.md │ ├── date.js │ ├── daterangepicker-bs3.css │ ├── daterangepicker.css │ ├── daterangepicker.js │ ├── moment.js │ └── moment.min.js │ ├── bootstrap-datetimepicker │ ├── css │ │ └── datetimepicker.css │ ├── js │ │ ├── bootstrap-datetimepicker.js │ │ ├── bootstrap-datetimepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ └── less │ │ └── datetimepicker.less │ ├── bootstrap-fileupload │ ├── bootstrap-fileupload.css │ └── bootstrap-fileupload.js │ ├── bootstrap-inputmask │ ├── bootstrap-inputmask.js │ └── bootstrap-inputmask.min.js │ ├── bootstrap-switch.js │ ├── bootstrap-timepicker │ ├── js │ │ └── bootstrap-timepicker.js │ └── less │ │ └── timepicker.less │ ├── bootstrap-wysihtml5 │ ├── bootstrap-wysihtml5.css │ ├── bootstrap-wysihtml5.js │ ├── locales │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ ├── bootstrap-wysihtml5.de-DE.js │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ └── bootstrap-wysihtml5.zh-TW.js │ ├── wysihtml5-0.3.0.js │ └── wysiwyg-color.css │ ├── c3-chart.init.js │ ├── c3-chart │ ├── c3.css │ ├── c3.js │ └── c3.min.js │ ├── calendar │ ├── clndr.js │ ├── clndr.min.js │ └── moment-2.2.1.js │ ├── chart-js │ ├── Chart.js │ └── Chart.min.js │ ├── chartjs.init.js │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── icons.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── sk.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ └── zh-cn.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── wsc.css │ │ │ └── wsc.js │ ├── samples │ │ ├── assets │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── outputxhtml │ │ │ │ └── outputxhtml.css │ │ │ ├── posteddata.php │ │ │ ├── sample.css │ │ │ ├── sample.jpg │ │ │ └── uilanguages │ │ │ │ └── languages.js │ │ ├── plugins │ │ │ ├── dialog │ │ │ │ └── assets │ │ │ │ │ └── my_dialog.js │ │ │ └── htmlwriter │ │ │ │ └── assets │ │ │ │ └── outputforflash │ │ │ │ ├── outputforflash.fla │ │ │ │ ├── outputforflash.swf │ │ │ │ └── swfobject.js │ │ ├── sample.css │ │ ├── sample.js │ │ └── sample_posteddata.php │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ └── mini.png │ │ │ └── readme.md │ └── styles.js │ ├── css3clock │ ├── css │ │ └── style.css │ ├── images │ │ ├── clockface.png │ │ ├── hourhand.png │ │ ├── minhand.png │ │ └── sechand.png │ └── js │ │ └── css3clock.js │ ├── dashboard.js │ ├── data-tables │ ├── DT_bootstrap.css │ ├── DT_bootstrap.js │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ └── sort_desc.png │ └── jquery.dataTables.js │ ├── draggable-portlet.js │ ├── dynamic_table_init.js │ ├── easypiechart │ ├── easypiechart.js │ ├── jquery.easypiechart.js │ └── jquery.easypiechart.min.js │ ├── evnt.calendar.init.js │ ├── external-dragging-calendar.js │ ├── file-uploader │ ├── css │ │ ├── demo-ie8.css │ │ ├── demo.css │ │ ├── jquery.fileupload-noscript.css │ │ ├── jquery.fileupload-ui-noscript.css │ │ ├── jquery.fileupload-ui.css │ │ ├── jquery.fileupload.css │ │ └── style.css │ ├── img │ │ ├── loading.gif │ │ └── progressbar.gif │ ├── js │ │ ├── app.js │ │ ├── cors │ │ │ ├── jquery.postmessage-transport.js │ │ │ └── jquery.xdr-transport.js │ │ ├── jquery.fileupload-angular.js │ │ ├── jquery.fileupload-audio.js │ │ ├── jquery.fileupload-image.js │ │ ├── jquery.fileupload-jquery-ui.js │ │ ├── jquery.fileupload-process.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload-validate.js │ │ ├── jquery.fileupload-video.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ ├── main.js │ │ └── vendor │ │ │ └── jquery.ui.widget.js │ └── server │ │ ├── gae-go │ │ ├── app.yaml │ │ ├── app │ │ │ └── main.go │ │ └── static │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ ├── gae-python │ │ ├── app.yaml │ │ ├── main.py │ │ └── static │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ ├── node │ │ ├── .gitignore │ │ ├── package.json │ │ ├── public │ │ │ └── files │ │ │ │ └── .gitignore │ │ ├── server.js │ │ └── tmp │ │ │ └── .gitignore │ │ └── php │ │ ├── UploadHandler.php │ │ ├── files │ │ ├── .gitignore │ │ └── .htaccess │ │ └── index.php │ ├── flot-chart │ ├── API.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE.txt │ ├── Makefile │ ├── NEWS.md │ ├── PLUGINS.md │ ├── README.md │ ├── build.log │ ├── excanvas.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.colorhelpers.min.js │ ├── jquery.flot.animator.js │ ├── jquery.flot.animator.min.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.canvas.min.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.categories.min.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.crosshair.min.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.errorbars.min.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.fillbetween.min.js │ ├── jquery.flot.growraf.js │ ├── jquery.flot.image.js │ ├── jquery.flot.image.min.js │ ├── jquery.flot.js │ ├── jquery.flot.min.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.navigate.min.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.pie.resize.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.resize.min.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.selection.min.js │ ├── jquery.flot.spline.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.stack.min.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.symbol.min.js │ ├── jquery.flot.threshold.js │ ├── jquery.flot.threshold.min.js │ ├── jquery.flot.time.js │ ├── jquery.flot.time.min.js │ ├── jquery.flot.tooltip.js │ ├── jquery.flot.tooltip.min.js │ ├── jquery.js │ └── jquery.min.js │ ├── flot.chart.init.js │ ├── fuelux │ ├── COPYING │ ├── README.md │ ├── css │ │ ├── tree-style.css │ │ └── tree.css │ ├── img │ │ └── tree-icons.png │ └── js │ │ ├── spinner.js │ │ ├── spinner.min.js │ │ ├── tree.js │ │ └── tree.min.js │ ├── fullcalendar │ ├── bootstrap-fullcalendar.css │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.js │ ├── fullcalendar.print.css │ └── gcal.js │ ├── gauge │ ├── gauge.js │ └── gauge.min.js │ ├── google-map │ ├── .gitignore │ ├── data │ │ ├── ajax.php │ │ └── points.js │ ├── libs.min.css │ ├── maplace.js │ └── maplace.min.js │ ├── gritter.js │ ├── gritter │ ├── css │ │ └── jquery.gritter.css │ ├── images │ │ ├── gritter-blue.png │ │ ├── gritter-brown.png │ │ ├── gritter-light.png │ │ ├── gritter-long.png │ │ ├── gritter-purple.png │ │ ├── gritter.png │ │ └── ie-spacer.gif │ └── js │ │ ├── jquery.gritter.js │ │ └── jquery.gritter.min.js │ ├── hover-dropdown.js │ ├── iCheck │ ├── README.md │ ├── jquery.icheck.js │ ├── jquery.icheck.min.js │ ├── skins │ │ ├── all.css │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ ├── zepto.icheck.js │ └── zepto.icheck.min.js │ ├── icheck-init.js │ ├── ie8-responsive-file-warning.js │ ├── ion.rangeSlider-1.8.2 │ ├── PSD │ │ └── sprite-skin.psd │ ├── css │ │ ├── ion.rangeSlider.css │ │ ├── ion.rangeSlider.skinFlat.css │ │ ├── ion.rangeSlider.skinNice.css │ │ ├── ion.rangeSlider.skinSimple.css │ │ └── normalize.min.css │ ├── img │ │ ├── sprite-skin-flat-red.png │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-nice.png │ │ └── sprite-skin-simple.png │ └── js │ │ ├── ion-rangeSlider │ │ ├── ion.rangeSlider.js │ │ └── ion.rangeSlider.min.js │ │ └── vendor │ │ └── jquery-1.10.2.min.js │ ├── jQuery-slimScroll-1.3.0 │ ├── jquery.slimscroll.js │ └── jquery.slimscroll.min.js │ ├── jplayer │ ├── jplayer.init.js │ ├── js │ │ ├── Jplayer.swf │ │ ├── circle.player.js │ │ ├── jplayer.playlist.min.js │ │ ├── jquery.grab.js │ │ ├── jquery.jplayer.inspector.js │ │ ├── jquery.jplayer.min.js │ │ ├── jquery.transform2d.js │ │ ├── mod.csstransforms.min.js │ │ ├── popcorn.jplayer.js │ │ ├── popcorn.js │ │ ├── popcorn.player.js │ │ └── popcorn.subtitle.js │ └── skin │ │ ├── blue.monday │ │ ├── jplayer.blue.monday.css │ │ ├── jplayer.blue.monday.jpg │ │ ├── jplayer.blue.monday.png │ │ ├── jplayer.blue.monday.seeking.gif │ │ └── jplayer.blue.monday.video.play.png │ │ ├── circle.skin │ │ ├── bgr.jpg │ │ ├── buffer.png │ │ ├── circle.player.css │ │ ├── controls.jpg │ │ ├── progress.png │ │ └── progress_sprite.jpg │ │ └── pink.flag │ │ ├── jplayer.pink.flag.css │ │ ├── jplayer.pink.flag.jpg │ │ ├── jplayer.pink.flag.seeking.gif │ │ └── jplayer.pink.flag.video.play.png │ ├── jquery-1.8.3.min.js │ ├── jquery-multi-select │ ├── .gitignore │ ├── css │ │ └── multi-select.css │ ├── img │ │ ├── switch.png │ │ └── switch_original.png │ └── js │ │ ├── jquery.multi-select.js │ │ └── jquery.quicksearch.js │ ├── jquery-placeholder │ └── jquery.placeholder.js │ ├── jquery-steps │ ├── Gruntfile.js │ ├── jquery.steps.js │ ├── src │ │ ├── _banner.js │ │ ├── defaults.js │ │ ├── enums.js │ │ ├── helper.js │ │ ├── model.js │ │ ├── privates.js │ │ └── publics.js │ └── steps.jquery.json │ ├── jquery-tags-input │ ├── README.md │ ├── jquery.tagsinput.css │ ├── jquery.tagsinput.js │ └── jquery.tagsinput.min.js │ ├── jquery-ui-1.9.2.custom.min.js │ ├── jquery-ui │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui-1.10.1.custom.css │ ├── jquery-ui-1.10.1.custom.min.css │ ├── jquery-ui-1.10.1.custom.min.js │ ├── jquery-ui-1.10.2.custom.min.js │ └── jquery-ui-1.9.2.custom.min.js │ ├── jquery.customSelect.min.js │ ├── jquery.dcjqaccordion.2.7.js │ ├── jquery.isotope.js │ ├── jquery.js │ ├── jquery.nicescroll.js │ ├── jquery.scrollTo.min.js │ ├── jquery.scrollTo │ ├── .gitignore │ ├── README.md │ ├── component.json │ ├── jquery.scrollTo.js │ └── jquery.scrollTo.min.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jvector-map │ ├── jquery-jvectormap-1.1.1.css │ ├── jquery-jvectormap-1.1.1.min.js │ ├── jquery-jvectormap-1.2.2.css │ ├── jquery-jvectormap-1.2.2.min.js │ ├── jquery-jvectormap-au-mill-en.js │ ├── jquery-jvectormap-us-aea-en.js │ ├── jquery-jvectormap-us-lcc-en.js │ ├── jquery-jvectormap-us-merc-en.js │ ├── jquery-jvectormap-us-mill-en.js │ ├── jquery-jvectormap-world-mill-en.js │ └── jqvmap │ │ ├── data │ │ └── jquery.vmap.sampledata.js │ │ ├── jquery.vmap.js │ │ ├── jquery.vmap.min.js │ │ ├── jquery.vmap.packed.js │ │ ├── jqvmap.css │ │ └── maps │ │ ├── continents │ │ ├── jquery.vmap.africa.js │ │ ├── jquery.vmap.asia.js │ │ ├── jquery.vmap.australia.js │ │ ├── jquery.vmap.europe.js │ │ ├── jquery.vmap.north-america.js │ │ ├── jquery.vmap.south-america.js │ │ └── readme.txt │ │ ├── jquery.vmap.algeria.js │ │ ├── jquery.vmap.brazil.js │ │ ├── jquery.vmap.europe.js │ │ ├── jquery.vmap.france.js │ │ ├── jquery.vmap.germany.js │ │ ├── jquery.vmap.russia.js │ │ ├── jquery.vmap.usa.js │ │ └── jquery.vmap.world.js │ ├── mini-upload-form │ ├── assets │ │ ├── css │ │ │ ├── bucketmin.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── border-image.png │ │ │ └── icons.png │ │ └── js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── jquery.knob.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── script.js │ └── upload.php │ ├── morris-chart │ ├── .gitignore │ ├── morris.css │ ├── morris.js │ ├── morris.min.js │ └── raphael-min.js │ ├── morris.init.js │ ├── nestable.js │ ├── nestable │ ├── README.md │ ├── jquery.nestable.css │ └── jquery.nestable.js │ ├── scripts.js │ ├── select-init.js │ ├── select2 │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── component.json │ ├── composer.json │ ├── package.json │ ├── release.sh │ ├── select2-bootstrap.css │ ├── select2-spinner.gif │ ├── select2.css │ ├── select2.jquery.json │ ├── select2.js │ ├── select2.png │ ├── select2_locale_ar.js │ ├── select2_locale_bg.js │ ├── select2_locale_ca.js │ ├── select2_locale_cs.js │ ├── select2_locale_da.js │ ├── select2_locale_de.js │ ├── select2_locale_el.js │ ├── select2_locale_en.js.template │ ├── select2_locale_es.js │ ├── select2_locale_et.js │ ├── select2_locale_eu.js │ ├── select2_locale_fa.js │ ├── select2_locale_fi.js │ ├── select2_locale_fr.js │ ├── select2_locale_gl.js │ ├── select2_locale_he.js │ ├── select2_locale_hr.js │ ├── select2_locale_hu.js │ ├── select2_locale_id.js │ ├── select2_locale_is.js │ ├── select2_locale_it.js │ ├── select2_locale_ja.js │ ├── select2_locale_ka.js │ ├── select2_locale_ko.js │ ├── select2_locale_lt.js │ ├── select2_locale_lv.js │ ├── select2_locale_mk.js │ ├── select2_locale_ms.js │ ├── select2_locale_nl.js │ ├── select2_locale_no.js │ ├── select2_locale_pl.js │ ├── select2_locale_pt-BR.js │ ├── select2_locale_pt-PT.js │ ├── select2_locale_ro.js │ ├── select2_locale_rs.js │ ├── select2_locale_ru.js │ ├── select2_locale_sk.js │ ├── select2_locale_sv.js │ ├── select2_locale_th.js │ ├── select2_locale_tr.js │ ├── select2_locale_uk.js │ ├── select2_locale_vi.js │ ├── select2_locale_zh-CN.js │ ├── select2_locale_zh-TW.js │ └── select2x2.png │ ├── skycons │ ├── .gitignore │ ├── README.md │ └── skycons.js │ ├── sparkline │ └── jquery.sparkline.js │ ├── table-editable.js │ ├── theme-switcher.js │ ├── toggle-init.js │ ├── tree.js │ └── validation-init.js ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AdminpagesController.php │ │ │ ├── Login │ │ │ │ └── AdminloginController.php │ │ │ └── Profile │ │ │ │ └── AdminprofileController.php │ │ ├── Auth │ │ │ ├── AuthorController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── UserController.php │ │ ├── Controller.php │ │ ├── Front │ │ │ ├── Addbank │ │ │ │ └── AddbankController.php │ │ │ ├── Addcard │ │ │ │ └── AddcardController.php │ │ │ ├── Fans │ │ │ │ └── FansController.php │ │ │ ├── Following │ │ │ │ └── FollowingController.php │ │ │ ├── Login │ │ │ │ └── LoginController.php │ │ │ ├── Losspassword │ │ │ │ └── LosspasswordController.php │ │ │ ├── Messages │ │ │ │ └── MessagesController.php │ │ │ ├── Notification │ │ │ │ └── NotificationController.php │ │ │ ├── Posts │ │ │ │ └── PostsController.php │ │ │ ├── Profile │ │ │ │ └── ProfileController.php │ │ │ ├── Register │ │ │ │ └── RegisterController.php │ │ │ ├── Setting │ │ │ │ └── SettingController.php │ │ │ └── Statements │ │ │ │ └── StatementsController.php │ │ └── PagesController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EnvatoServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── User.php └── customfunction.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── composer ├── .htaccess ├── composer.json ├── composer.lock ├── keys.dev.pub ├── keys.tags.pub └── vendor │ ├── autoload.php │ ├── bin │ ├── laravel │ └── laravel.bat │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── guzzlehttp │ ├── guzzle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── RequestException.php │ │ │ ├── SeekException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── UriTemplate.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── FnStream.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── MessageTrait.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── functions.php │ │ └── functions_include.php │ ├── laravel │ └── installer │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── laravel │ │ ├── src │ │ └── NewCommand.php │ │ └── zipper.sh │ ├── psr │ └── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php │ └── symfony │ ├── console │ ├── .gitignore │ ├── Application.php │ ├── CHANGELOG.md │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ ├── ListCommand.php │ │ └── LockableTrait.php │ ├── CommandLoader │ │ ├── CommandLoaderInterface.php │ │ ├── ContainerCommandLoader.php │ │ └── FactoryCommandLoader.php │ ├── ConsoleEvents.php │ ├── DependencyInjection │ │ └── AddConsoleCommandPass.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleErrorEvent.php │ │ ├── ConsoleEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── EventListener │ │ └── ErrorListener.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── OutputFormatter.php │ │ ├── OutputFormatterInterface.php │ │ ├── OutputFormatterStyle.php │ │ ├── OutputFormatterStyleInterface.php │ │ └── OutputFormatterStyleStack.php │ ├── Helper │ │ ├── DebugFormatterHelper.php │ │ ├── DescriptorHelper.php │ │ ├── FormatterHelper.php │ │ ├── Helper.php │ │ ├── HelperInterface.php │ │ ├── HelperSet.php │ │ ├── InputAwareHelper.php │ │ ├── ProcessHelper.php │ │ ├── ProgressBar.php │ │ ├── ProgressIndicator.php │ │ ├── QuestionHelper.php │ │ ├── SymfonyQuestionHelper.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableSeparator.php │ │ └── TableStyle.php │ ├── Input │ │ ├── ArgvInput.php │ │ ├── ArrayInput.php │ │ ├── Input.php │ │ ├── InputArgument.php │ │ ├── InputAwareInterface.php │ │ ├── InputDefinition.php │ │ ├── InputInterface.php │ │ ├── InputOption.php │ │ ├── StreamableInputInterface.php │ │ └── StringInput.php │ ├── LICENSE │ ├── Logger │ │ └── ConsoleLogger.php │ ├── Output │ │ ├── BufferedOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleOutputInterface.php │ │ ├── NullOutput.php │ │ ├── Output.php │ │ ├── OutputInterface.php │ │ └── StreamOutput.php │ ├── Question │ │ ├── ChoiceQuestion.php │ │ ├── ConfirmationQuestion.php │ │ └── Question.php │ ├── README.md │ ├── Resources │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Terminal.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ └── CommandTester.php │ ├── Tests │ │ ├── ApplicationTest.php │ │ ├── Command │ │ │ ├── CommandTest.php │ │ │ ├── HelpCommandTest.php │ │ │ ├── ListCommandTest.php │ │ │ └── LockableTraitTest.php │ │ ├── CommandLoader │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ └── FactoryCommandLoaderTest.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPassTest.php │ │ ├── Descriptor │ │ │ ├── AbstractDescriptorTest.php │ │ │ ├── JsonDescriptorTest.php │ │ │ ├── MarkdownDescriptorTest.php │ │ │ ├── ObjectsProvider.php │ │ │ ├── TextDescriptorTest.php │ │ │ └── XmlDescriptorTest.php │ │ ├── EventListener │ │ │ └── ErrorListenerTest.php │ │ ├── Fixtures │ │ │ ├── BarBucCommand.php │ │ │ ├── DescriptorApplication1.php │ │ │ ├── DescriptorApplication2.php │ │ │ ├── DescriptorApplicationMbString.php │ │ │ ├── DescriptorCommand1.php │ │ │ ├── DescriptorCommand2.php │ │ │ ├── DescriptorCommand3.php │ │ │ ├── DescriptorCommand4.php │ │ │ ├── DescriptorCommandMbString.php │ │ │ ├── DummyOutput.php │ │ │ ├── Foo1Command.php │ │ │ ├── Foo2Command.php │ │ │ ├── Foo3Command.php │ │ │ ├── Foo4Command.php │ │ │ ├── Foo5Command.php │ │ │ ├── Foo6Command.php │ │ │ ├── FooCommand.php │ │ │ ├── FooLock2Command.php │ │ │ ├── FooLockCommand.php │ │ │ ├── FooOptCommand.php │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ ├── FooSameCaseUppercaseCommand.php │ │ │ ├── FooSubnamespaced1Command.php │ │ │ ├── FooSubnamespaced2Command.php │ │ │ ├── FoobarCommand.php │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ ├── command │ │ │ │ │ ├── command_0.php │ │ │ │ │ ├── command_1.php │ │ │ │ │ ├── command_10.php │ │ │ │ │ ├── command_11.php │ │ │ │ │ ├── command_12.php │ │ │ │ │ ├── command_13.php │ │ │ │ │ ├── command_14.php │ │ │ │ │ ├── command_15.php │ │ │ │ │ ├── command_16.php │ │ │ │ │ ├── command_17.php │ │ │ │ │ ├── command_2.php │ │ │ │ │ ├── command_3.php │ │ │ │ │ ├── command_4.php │ │ │ │ │ ├── command_5.php │ │ │ │ │ ├── command_6.php │ │ │ │ │ ├── command_7.php │ │ │ │ │ ├── command_8.php │ │ │ │ │ ├── command_9.php │ │ │ │ │ └── interactive_command_1.php │ │ │ │ │ └── output │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_10.txt │ │ │ │ │ ├── output_11.txt │ │ │ │ │ ├── output_12.txt │ │ │ │ │ ├── output_13.txt │ │ │ │ │ ├── output_14.txt │ │ │ │ │ ├── output_15.txt │ │ │ │ │ ├── output_16.txt │ │ │ │ │ ├── output_17.txt │ │ │ │ │ ├── output_2.txt │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_4.txt │ │ │ │ │ ├── output_5.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── output_8.txt │ │ │ │ │ └── output_9.txt │ │ │ ├── TestCommand.php │ │ │ ├── TestTiti.php │ │ │ ├── TestToto.php │ │ │ ├── application_1.json │ │ │ ├── application_1.md │ │ │ ├── application_1.txt │ │ │ ├── application_1.xml │ │ │ ├── application_2.json │ │ │ ├── application_2.md │ │ │ ├── application_2.txt │ │ │ ├── application_2.xml │ │ │ ├── application_filtered_namespace.txt │ │ │ ├── application_gethelp.txt │ │ │ ├── application_mbstring.md │ │ │ ├── application_mbstring.txt │ │ │ ├── application_renderexception1.txt │ │ │ ├── application_renderexception2.txt │ │ │ ├── application_renderexception3.txt │ │ │ ├── application_renderexception3decorated.txt │ │ │ ├── application_renderexception4.txt │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ ├── application_renderexception_linebreaks.txt │ │ │ ├── application_run1.txt │ │ │ ├── application_run2.txt │ │ │ ├── application_run3.txt │ │ │ ├── application_run4.txt │ │ │ ├── command_1.json │ │ │ ├── command_1.md │ │ │ ├── command_1.txt │ │ │ ├── command_1.xml │ │ │ ├── command_2.json │ │ │ ├── command_2.md │ │ │ ├── command_2.txt │ │ │ ├── command_2.xml │ │ │ ├── command_mbstring.md │ │ │ ├── command_mbstring.txt │ │ │ ├── input_argument_1.json │ │ │ ├── input_argument_1.md │ │ │ ├── input_argument_1.txt │ │ │ ├── input_argument_1.xml │ │ │ ├── input_argument_2.json │ │ │ ├── input_argument_2.md │ │ │ ├── input_argument_2.txt │ │ │ ├── input_argument_2.xml │ │ │ ├── input_argument_3.json │ │ │ ├── input_argument_3.md │ │ │ ├── input_argument_3.txt │ │ │ ├── input_argument_3.xml │ │ │ ├── input_argument_4.json │ │ │ ├── input_argument_4.md │ │ │ ├── input_argument_4.txt │ │ │ ├── input_argument_4.xml │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ ├── input_argument_with_style.json │ │ │ ├── input_argument_with_style.md │ │ │ ├── input_argument_with_style.txt │ │ │ ├── input_argument_with_style.xml │ │ │ ├── input_definition_1.json │ │ │ ├── input_definition_1.md │ │ │ ├── input_definition_1.txt │ │ │ ├── input_definition_1.xml │ │ │ ├── input_definition_2.json │ │ │ ├── input_definition_2.md │ │ │ ├── input_definition_2.txt │ │ │ ├── input_definition_2.xml │ │ │ ├── input_definition_3.json │ │ │ ├── input_definition_3.md │ │ │ ├── input_definition_3.txt │ │ │ ├── input_definition_3.xml │ │ │ ├── input_definition_4.json │ │ │ ├── input_definition_4.md │ │ │ ├── input_definition_4.txt │ │ │ ├── input_definition_4.xml │ │ │ ├── input_option_1.json │ │ │ ├── input_option_1.md │ │ │ ├── input_option_1.txt │ │ │ ├── input_option_1.xml │ │ │ ├── input_option_2.json │ │ │ ├── input_option_2.md │ │ │ ├── input_option_2.txt │ │ │ ├── input_option_2.xml │ │ │ ├── input_option_3.json │ │ │ ├── input_option_3.md │ │ │ ├── input_option_3.txt │ │ │ ├── input_option_3.xml │ │ │ ├── input_option_4.json │ │ │ ├── input_option_4.md │ │ │ ├── input_option_4.txt │ │ │ ├── input_option_4.xml │ │ │ ├── input_option_5.json │ │ │ ├── input_option_5.md │ │ │ ├── input_option_5.txt │ │ │ ├── input_option_5.xml │ │ │ ├── input_option_6.json │ │ │ ├── input_option_6.md │ │ │ ├── input_option_6.txt │ │ │ ├── input_option_6.xml │ │ │ ├── input_option_with_default_inf_value.json │ │ │ ├── input_option_with_default_inf_value.md │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ ├── input_option_with_style.json │ │ │ ├── input_option_with_style.md │ │ │ ├── input_option_with_style.txt │ │ │ ├── input_option_with_style.xml │ │ │ ├── input_option_with_style_array.json │ │ │ ├── input_option_with_style_array.md │ │ │ ├── input_option_with_style_array.txt │ │ │ └── input_option_with_style_array.xml │ │ ├── Formatter │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ ├── OutputFormatterStyleTest.php │ │ │ └── OutputFormatterTest.php │ │ ├── Helper │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ ├── FormatterHelperTest.php │ │ │ ├── HelperSetTest.php │ │ │ ├── HelperTest.php │ │ │ ├── ProcessHelperTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressIndicatorTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ ├── TableStyleTest.php │ │ │ └── TableTest.php │ │ ├── Input │ │ │ ├── ArgvInputTest.php │ │ │ ├── ArrayInputTest.php │ │ │ ├── InputArgumentTest.php │ │ │ ├── InputDefinitionTest.php │ │ │ ├── InputOptionTest.php │ │ │ ├── InputTest.php │ │ │ └── StringInputTest.php │ │ ├── Logger │ │ │ └── ConsoleLoggerTest.php │ │ ├── Output │ │ │ ├── ConsoleOutputTest.php │ │ │ ├── NullOutputTest.php │ │ │ ├── OutputTest.php │ │ │ └── StreamOutputTest.php │ │ ├── Style │ │ │ └── SymfonyStyleTest.php │ │ ├── TerminalTest.php │ │ └── Tester │ │ │ ├── ApplicationTesterTest.php │ │ │ └── CommandTesterTest.php │ ├── composer.json │ └── phpunit.xml.dist │ ├── filesystem │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ ├── IOExceptionInterface.php │ │ └── InvalidArgumentException.php │ ├── Filesystem.php │ ├── LICENSE │ ├── README.md │ ├── Tests │ │ ├── ExceptionTest.php │ │ ├── FilesystemTest.php │ │ ├── FilesystemTestCase.php │ │ └── Fixtures │ │ │ └── MockStream │ │ │ └── MockStream.php │ ├── composer.json │ └── phpunit.xml.dist │ ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json │ └── process │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ ├── ProcessFailedException.php │ ├── ProcessTimedOutException.php │ └── RuntimeException.php │ ├── ExecutableFinder.php │ ├── InputStream.php │ ├── LICENSE │ ├── PhpExecutableFinder.php │ ├── PhpProcess.php │ ├── Pipes │ ├── AbstractPipes.php │ ├── PipesInterface.php │ ├── UnixPipes.php │ └── WindowsPipes.php │ ├── Process.php │ ├── ProcessUtils.php │ ├── README.md │ ├── Tests │ ├── ExecutableFinderTest.php │ ├── NonStopableProcess.php │ ├── PhpExecutableFinderTest.php │ ├── PhpProcessTest.php │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ ├── ProcessFailedExceptionTest.php │ ├── ProcessTest.php │ └── SignalListener.php │ ├── composer.json │ └── phpunit.xml.dist ├── 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 │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_100000_create_password_resets_table.php └── seeds │ └── DatabaseSeeder.php ├── frontassets ├── css │ ├── owl.carousel.css │ ├── owl.theme.default.css │ └── style.css ├── images │ ├── bg1.png │ ├── bg2.jpg │ ├── dash-icon1.png │ ├── dash-icon2.png │ ├── dash-icon3.png │ ├── dash-icon4.png │ ├── dash-icon5.png │ ├── dash-img1.png │ ├── dash-img2.png │ ├── dash-img3.png │ ├── dash-img4.png │ ├── dash-img5.png │ ├── dolor_icon.png │ ├── down-arrow.png │ ├── fan-icon1.png │ ├── fan-icon2.png │ ├── fan-icon3.png │ ├── fan-icon4.png │ ├── fan-icon5.png │ ├── fan-icon6.png │ ├── favicon.png │ ├── folower_icon.png │ ├── home-icon.png │ ├── icon-1.png │ ├── icon-2.png │ ├── icon-3.png │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── infor.png │ ├── logo.png │ ├── logo1.png │ ├── logo2.png │ ├── msg-icon.png │ ├── noti-icon.png │ ├── noti-icon1.png │ ├── noti-icon10.png │ ├── noti-icon11.png │ ├── noti-icon12.png │ ├── noti-icon13.png │ ├── noti-icon2.png │ ├── noti-icon3.png │ ├── noti-icon4.png │ ├── noti-icon5.png │ ├── noti-icon6.png │ ├── noti-icon7.png │ ├── noti-icon8.png │ ├── noti-icon9.png │ ├── profile-img1.png │ ├── profile-img2.png │ ├── profile-img3.png │ ├── profile.png │ ├── shap-icon1.png │ ├── shape-icon2.png │ └── tw.png └── js │ ├── jquery.min.js │ ├── jquery.validate.js │ └── owl.carousel.js ├── index.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── robots.txt ├── uploads │ ├── categoryimages │ │ ├── Desert.jpg │ │ ├── Hydrangeas.jpg │ │ ├── Jellyfish.jpg │ │ ├── Koala.jpg │ │ ├── Tulips.jpg │ │ ├── dddddddddd.jpg │ │ └── property-20180404001112.png │ ├── productimages │ │ ├── Desert.jpg │ │ ├── Hydrangeas.jpg │ │ ├── Jellyfish.jpg │ │ ├── Koala.jpg │ │ ├── Lighthouse.jpg │ │ ├── Tulips.jpg │ │ ├── mini.jpg │ │ └── property-20180404001112.png │ └── productimagesJellyfish.jpg └── web.config ├── readme.md ├── 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 │ ├── admin │ ├── home.blade.php │ ├── layout │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ ├── loginhead.blade.php │ │ └── sidebar.blade.php │ ├── login │ │ └── login.blade.php │ └── profile │ │ └── profile.blade.php │ ├── front │ ├── bank │ │ └── addbank.blade.php │ ├── card │ │ └── addcard.blade.php │ ├── fans │ │ ├── active.blade.php │ │ ├── expire.blade.php │ │ └── fans.blade.php │ ├── following │ │ ├── active.blade.php │ │ ├── expire.blade.php │ │ └── following.blade.php │ ├── home.blade.php │ ├── layout │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ └── sidebar.blade.php │ ├── login │ │ └── login.blade.php │ ├── losspassword │ │ └── losspassword.blade.php │ ├── messages │ │ └── messages.blade.php │ ├── notification │ │ ├── alerts.blade.php │ │ ├── interaction.blade.php │ │ ├── likes.blade.php │ │ ├── notification.blade.php │ │ ├── pricechange.blade.php │ │ ├── subscriber.blade.php │ │ └── tipped.blade.php │ ├── post │ │ └── createpost.blade.php │ ├── profile │ │ └── profile.blade.php │ ├── register │ │ └── register.blade.php │ ├── setting │ │ ├── advancedsetting.blade.php │ │ └── setting.blade.php │ └── statements │ │ └── statements.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── 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 /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.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 14 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes If Not A Folder... 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)/$ /$1 [L,R=301] 11 | 12 | # Handle Front Controller... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteRule ^ index.php [L] 16 | 17 | # Handle Authorization Header 18 | RewriteCond %{HTTP:Authorization} . 19 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 20 | 21 | -------------------------------------------------------------------------------- /adminassets/bs3/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/bs3/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /adminassets/bs3/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/bs3/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /adminassets/bs3/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/bs3/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /adminassets/css/blue-theme.css: -------------------------------------------------------------------------------- 1 | .right-side-accordion .terques-bg,.slimScrollBar,.brand,.sidebar-toggle-box,ul.top-menu>li>a:hover,ul.top-menu>li>a:focus,.toggle-right-box:hover { 2 | background:#38bbeb !important; 3 | } 4 | 5 | 6 | ul.sidebar-menu li ul.sub li a:hover,ul.sidebar-menu li ul.sub li.active a ,ul.sidebar-menu li a.active, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus,ul.sidebar-menu li a.active i,ul.sidebar-menu li a:hover i,ul.sidebar-menu li a:focus i{ 7 | color: #38bbeb; 8 | } -------------------------------------------------------------------------------- /adminassets/css/default-theme.css: -------------------------------------------------------------------------------- 1 | 2 | .right-side-accordion .terques-bg,.slimScrollBar,.brand,.sidebar-toggle-box,ul.top-menu>li>a:hover,ul.top-menu>li>a:focus,.toggle-right-box:hover { 3 | background:#1FB5AD !important; 4 | } 5 | 6 | 7 | ul.sidebar-menu li ul.sub li a:hover,ul.sidebar-menu li ul.sub li.active a ,ul.sidebar-menu li a.active, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus,ul.sidebar-menu li a.active i,ul.sidebar-menu li a:hover i,ul.sidebar-menu li a:focus i{ 8 | color: #1FB5AD; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /adminassets/css/green-theme.css: -------------------------------------------------------------------------------- 1 | 2 | .right-side-accordion .terques-bg,.slimScrollBar,.brand,.sidebar-toggle-box,ul.top-menu>li>a:hover,ul.top-menu>li>a:focus,.toggle-right-box:hover { 3 | background:#8ebf4e !important; 4 | } 5 | 6 | 7 | ul.sidebar-menu li ul.sub li a:hover,ul.sidebar-menu li ul.sub li.active a ,ul.sidebar-menu li a.active, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus,ul.sidebar-menu li a.active i,ul.sidebar-menu li a:hover i,ul.sidebar-menu li a:focus i{ 8 | color: #8ebf4e 9 | } 10 | 11 | -------------------------------------------------------------------------------- /adminassets/css/orange-theme.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .right-side-accordion .terques-bg,.slimScrollBar,.brand,.sidebar-toggle-box,ul.top-menu>li>a:hover,ul.top-menu>li>a:focus,.toggle-right-box:hover { 4 | background:#fea352 !important; 5 | } 6 | 7 | 8 | ul.sidebar-menu li ul.sub li a:hover,ul.sidebar-menu li ul.sub li.active a ,ul.sidebar-menu li a.active, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus,ul.sidebar-menu li a.active i,ul.sidebar-menu li a:hover i,ul.sidebar-menu li a:focus i{ 9 | color: #fea352; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /adminassets/css/purple-theme.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .right-side-accordion .terques-bg,.slimScrollBar,.brand,.sidebar-toggle-box,ul.top-menu>li>a:hover,ul.top-menu>li>a:focus,.toggle-right-box:hover { 4 | background:#9488dd !important; 5 | } 6 | 7 | 8 | ul.sidebar-menu li ul.sub li a:hover,ul.sidebar-menu li ul.sub li.active a ,ul.sidebar-menu li a.active, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus,ul.sidebar-menu li a.active i,ul.sidebar-menu li a:hover i,ul.sidebar-menu li a:focus i{ 9 | color: #9488dd; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /adminassets/css/turquoise-theme.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .right-side-accordion .terques-bg,.slimScrollBar,.brand,.sidebar-toggle-box,ul.top-menu>li>a:hover,ul.top-menu>li>a:focus,.toggle-right-box:hover { 4 | background:#6CCAC9 !important; 5 | } 6 | 7 | 8 | ul.sidebar-menu li ul.sub li a:hover,ul.sidebar-menu li ul.sub li.active a ,ul.sidebar-menu li a.active, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus,ul.sidebar-menu li a.active i,ul.sidebar-menu li a:hover i,ul.sidebar-menu li a:focus i{ 9 | color: #6CCAC9; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /adminassets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /adminassets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /adminassets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /adminassets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /adminassets/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /adminassets/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /adminassets/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /adminassets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/404.png -------------------------------------------------------------------------------- /adminassets/images/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/500.png -------------------------------------------------------------------------------- /adminassets/images/acc-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/acc-expand.png -------------------------------------------------------------------------------- /adminassets/images/avatar-mini-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/avatar-mini-2.jpg -------------------------------------------------------------------------------- /adminassets/images/avatar-mini-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/avatar-mini-3.jpg -------------------------------------------------------------------------------- /adminassets/images/avatar-mini-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/avatar-mini-4.jpg -------------------------------------------------------------------------------- /adminassets/images/avatar-mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/avatar-mini.jpg -------------------------------------------------------------------------------- /adminassets/images/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/avatar1.jpg -------------------------------------------------------------------------------- /adminassets/images/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/avatar1_small.jpg -------------------------------------------------------------------------------- /adminassets/images/bucket-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/bucket-logo.png -------------------------------------------------------------------------------- /adminassets/images/chat-avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/chat-avatar2.jpg -------------------------------------------------------------------------------- /adminassets/images/chat-user-thumb-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/chat-user-thumb-f.png -------------------------------------------------------------------------------- /adminassets/images/chat-user-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/chat-user-thumb.png -------------------------------------------------------------------------------- /adminassets/images/crazy-price.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/crazy-price.jpg -------------------------------------------------------------------------------- /adminassets/images/customSelect-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/customSelect-arrow.gif -------------------------------------------------------------------------------- /adminassets/images/details_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/details_close.png -------------------------------------------------------------------------------- /adminassets/images/details_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/details_open.png -------------------------------------------------------------------------------- /adminassets/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/flags/de.png -------------------------------------------------------------------------------- /adminassets/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/flags/es.png -------------------------------------------------------------------------------- /adminassets/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/flags/fr.png -------------------------------------------------------------------------------- /adminassets/images/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/flags/ru.png -------------------------------------------------------------------------------- /adminassets/images/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/flags/us.png -------------------------------------------------------------------------------- /adminassets/images/gallery/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/gallery/image1.jpg -------------------------------------------------------------------------------- /adminassets/images/gallery/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/gallery/image2.jpg -------------------------------------------------------------------------------- /adminassets/images/gallery/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/gallery/image3.jpg -------------------------------------------------------------------------------- /adminassets/images/gallery/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/gallery/image4.jpg -------------------------------------------------------------------------------- /adminassets/images/gallery/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/gallery/image5.jpg -------------------------------------------------------------------------------- /adminassets/images/input-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/input-spinner.gif -------------------------------------------------------------------------------- /adminassets/images/lock-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/lock-screen.jpg -------------------------------------------------------------------------------- /adminassets/images/lock_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/lock_thumb.jpg -------------------------------------------------------------------------------- /adminassets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/logo.png -------------------------------------------------------------------------------- /adminassets/images/nav-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/nav-expand.png -------------------------------------------------------------------------------- /adminassets/images/product_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/product_img.png -------------------------------------------------------------------------------- /adminassets/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/search-icon.png -------------------------------------------------------------------------------- /adminassets/images/sm-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/sm-img-1.jpg -------------------------------------------------------------------------------- /adminassets/images/sm-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/sm-img-2.jpg -------------------------------------------------------------------------------- /adminassets/images/sm-img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/sm-img-3.jpg -------------------------------------------------------------------------------- /adminassets/images/top-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/top-arrow.png -------------------------------------------------------------------------------- /adminassets/images/twitter_corner_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/twitter_corner_black.png -------------------------------------------------------------------------------- /adminassets/images/twitter_corner_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/twitter_corner_blue.png -------------------------------------------------------------------------------- /adminassets/images/weather_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/images/weather_image.jpg -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/Sorting icons.psd -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/back_disabled.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/back_enabled.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/back_enabled_hover.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/favicon.ico -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/forward_disabled.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/forward_enabled.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/sort_asc.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/sort_both.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/sort_desc.png -------------------------------------------------------------------------------- /adminassets/js/advanced-datatable/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/advanced-datatable/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /adminassets/js/bootstrap-colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/bootstrap-colorpicker/img/alpha.png -------------------------------------------------------------------------------- /adminassets/js/bootstrap-colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/bootstrap-colorpicker/img/hue.png -------------------------------------------------------------------------------- /adminassets/js/bootstrap-colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/bootstrap-colorpicker/img/saturation.png -------------------------------------------------------------------------------- /adminassets/js/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datetimepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datetimepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | suffix: [], 14 | meridiem: [] 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /adminassets/js/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datetimepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datetimepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 12 | suffix: [], 13 | meridiem: [] 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /adminassets/js/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /adminassets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /adminassets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /adminassets/js/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /adminassets/js/ckeditor/skins/moono/images/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/ckeditor/skins/moono/images/mini.png -------------------------------------------------------------------------------- /adminassets/js/css3clock/images/clockface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/css3clock/images/clockface.png -------------------------------------------------------------------------------- /adminassets/js/css3clock/images/hourhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/css3clock/images/hourhand.png -------------------------------------------------------------------------------- /adminassets/js/css3clock/images/minhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/css3clock/images/minhand.png -------------------------------------------------------------------------------- /adminassets/js/css3clock/images/sechand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/css3clock/images/sechand.png -------------------------------------------------------------------------------- /adminassets/js/data-tables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/data-tables/images/sort_asc.png -------------------------------------------------------------------------------- /adminassets/js/data-tables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/data-tables/images/sort_both.png -------------------------------------------------------------------------------- /adminassets/js/data-tables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/data-tables/images/sort_desc.png -------------------------------------------------------------------------------- /adminassets/js/file-uploader/css/demo-ie8.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2013, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | .navigation { 14 | list-style: none; 15 | padding: 0; 16 | margin: 1em 0; 17 | } 18 | .navigation li { 19 | display: inline; 20 | margin-right: 10px; 21 | } 22 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/css/jquery.fileupload-noscript.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Plugin NoScript CSS 1.2.0 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2013, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | .fileinput-button input { 14 | position: static; 15 | opacity: 1; 16 | filter: none; 17 | font-size: inherit; 18 | direction: inherit; 19 | } 20 | .fileinput-button span { 21 | display: none; 22 | } 23 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/css/jquery.fileupload-ui-noscript.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload UI Plugin NoScript CSS 8.8.5 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2012, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | .fileinput-button i, 14 | .fileupload-buttonbar .delete, 15 | .fileupload-buttonbar .toggle { 16 | display: none; 17 | } 18 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/css/style.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload Plugin CSS Example 8.8.2 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2013, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | body { 14 | padding-top: 60px; 15 | } 16 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/file-uploader/img/loading.gif -------------------------------------------------------------------------------- /adminassets/js/file-uploader/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/file-uploader/img/progressbar.gif -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/gae-go/app.yaml: -------------------------------------------------------------------------------- 1 | application: jquery-file-upload 2 | version: 2 3 | runtime: go 4 | api_version: go1 5 | 6 | handlers: 7 | - url: /(favicon\.ico|robots\.txt) 8 | static_files: static/\1 9 | upload: static/(.*) 10 | expiration: '1d' 11 | - url: /.* 12 | script: _go_app 13 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/gae-go/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/file-uploader/server/gae-go/static/favicon.ico -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/gae-python/app.yaml: -------------------------------------------------------------------------------- 1 | application: jquery-file-upload 2 | version: 1 3 | runtime: python27 4 | api_version: 1 5 | threadsafe: true 6 | 7 | builtins: 8 | - deferred: on 9 | 10 | handlers: 11 | - url: /(favicon\.ico|robots\.txt) 12 | static_files: static/\1 13 | upload: static/(.*) 14 | expiration: '1d' 15 | - url: /.* 16 | script: main.app 17 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/gae-python/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/file-uploader/server/gae-python/static/favicon.ico -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/file-uploader/server/node/tmp/.gitignore -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /adminassets/js/file-uploader/server/php/index.php: -------------------------------------------------------------------------------- 1 | =1.8" 12 | }, 13 | "keywords": [ 14 | "browser", "animated", "animation", 15 | "scrolling", "scroll", "links", "anchors" 16 | ], 17 | "author": { 18 | "name": "Ariel Flesler", 19 | "web": "http://flesler.blogspot.com/" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /adminassets/js/jvector-map/jqvmap/maps/continents/readme.txt: -------------------------------------------------------------------------------- 1 | These maps are just extracted from the world map and re-sized to same level as the world map. No extra details, or polygons added. -------------------------------------------------------------------------------- /adminassets/js/mini-upload-form/assets/img/border-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/mini-upload-form/assets/img/border-image.png -------------------------------------------------------------------------------- /adminassets/js/mini-upload-form/assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/mini-upload-form/assets/img/icons.png -------------------------------------------------------------------------------- /adminassets/js/mini-upload-form/upload.php: -------------------------------------------------------------------------------- 1 | = 1.7.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /adminassets/js/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/select2/select2-spinner.gif -------------------------------------------------------------------------------- /adminassets/js/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/select2/select2.png -------------------------------------------------------------------------------- /adminassets/js/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/adminassets/js/select2/select2x2.png -------------------------------------------------------------------------------- /adminassets/js/skycons/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/home'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /composer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "laravel/installer": "^2.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /composer/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | /dev/null; cd "../laravel/installer" && pwd) 4 | 5 | if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then 6 | # We are in Cgywin using Windows php, so the path must be translated 7 | dir=$(cygpath -m "$dir"); 8 | fi 9 | 10 | "${dir}/laravel" "$@" 11 | -------------------------------------------------------------------------------- /composer/vendor/bin/laravel.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../laravel/installer/laravel 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /composer/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/guzzlehttp/promises/src/functions_include.php', 10 | 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', 11 | '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', 12 | '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', 13 | ); 14 | -------------------------------------------------------------------------------- /composer/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | add(new Laravel\Installer\Console\NewCommand); 12 | 13 | $app->run(); 14 | -------------------------------------------------------------------------------- /composer/vendor/laravel/installer/zipper.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | wget https://github.com/laravel/laravel/archive/master.zip 3 | unzip master.zip -d working 4 | cd working/laravel-master 5 | composer install 6 | zip -ry ../../laravel-craft.zip . 7 | cd ../.. 8 | mv laravel-craft.zip public/laravel-craft.zip 9 | rm -rf working 10 | rm master.zip 11 | -------------------------------------------------------------------------------- /composer/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- 1 | PSR Http Message 2 | ================ 3 | 4 | This repository holds all interfaces/classes/traits related to 5 | [PSR-7](http://www.php-fig.org/psr/psr-7/). 6 | 7 | Note that this is not a HTTP message implementation of its own. It is merely an 8 | interface that describes a HTTP message. See the specification for more details. 9 | 10 | Usage 11 | ----- 12 | 13 | We'll certainly need some stuff in here. -------------------------------------------------------------------------------- /composer/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * ExceptionInterface. 16 | * 17 | * @author Jérôme Tamarelle 18 | */ 19 | interface ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * @author Jérôme Tamarelle 16 | */ 17 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Exception/InvalidOptionException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * Represents an incorrect option name typed in the console. 16 | * 17 | * @author Jérôme Tamarelle 18 | */ 19 | class InvalidOptionException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * @author Jérôme Tamarelle 16 | */ 17 | class LogicException extends \LogicException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * @author Jérôme Tamarelle 16 | */ 17 | class RuntimeException extends \RuntimeException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Helper/TableSeparator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Helper; 13 | 14 | /** 15 | * Marks a row as being a separator. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class TableSeparator extends TableCell 20 | { 21 | public function __construct(array $options = array()) 22 | { 23 | parent::__construct('', $options); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/composer/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Tests\Fixtures; 13 | 14 | use Symfony\Component\Console\Application; 15 | 16 | class DescriptorApplication1 extends Application 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Foo2Command.php: -------------------------------------------------------------------------------- 1 | setName('foo1:bar') 13 | ->setDescription('The foo1:bar command') 14 | ->setAliases(array('afoobar2')) 15 | ; 16 | } 17 | 18 | protected function execute(InputInterface $input, OutputInterface $output) 19 | { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Foo5Command.php: -------------------------------------------------------------------------------- 1 | setName('0foo:bar')->setDescription('0foo:bar command'); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php: -------------------------------------------------------------------------------- 1 | setName('foo:bar')->setDescription('foo:bar command'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php: -------------------------------------------------------------------------------- 1 | setName('foo:BAR')->setDescription('foo:BAR command'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php: -------------------------------------------------------------------------------- 1 | caution('Lorem ipsum dolor sit amet'); 11 | }; 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php: -------------------------------------------------------------------------------- 1 | title('Title'); 11 | $output->warning('Lorem ipsum dolor sit amet'); 12 | $output->title('Title'); 13 | }; 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php: -------------------------------------------------------------------------------- 1 | title('Title ending with \\'); 12 | $output->section('Section ending with \\'); 13 | }; 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php: -------------------------------------------------------------------------------- 1 | warning('Warning'); 11 | $output->caution('Caution'); 12 | $output->error('Error'); 13 | $output->success('Success'); 14 | $output->note('Note'); 15 | $output->block('Custom block', 'CUSTOM', 'fg=white;bg=green', 'X ', true); 16 | }; 17 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php: -------------------------------------------------------------------------------- 1 | title('First title'); 11 | $output->title('Second title'); 12 | }; 13 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php: -------------------------------------------------------------------------------- 1 | listing(array( 12 | 'Lorem ipsum dolor sit amet', 13 | 'consectetur adipiscing elit', 14 | )); 15 | $output->success('Lorem ipsum dolor sit amet'); 16 | }; 17 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php: -------------------------------------------------------------------------------- 1 | block(array('Custom block', 'Second custom block line'), 'CUSTOM', 'fg=white;bg=green', 'X ', true); 11 | }; 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt: -------------------------------------------------------------------------------- 1 | 2 | What's your name?: 3 | > 4 | How are you?: 5 | > 6 | Where do you come from?: 7 | > 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt: -------------------------------------------------------------------------------- 1 | 2 | ! [CAUTION] Lorem ipsum dolor sit amet 3 | 4 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt: -------------------------------------------------------------------------------- 1 | 2 | Title 3 | ===== 4 | 5 | [WARNING] Lorem ipsum dolor sit amet 6 | 7 | Title 8 | ===== 9 | 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt: -------------------------------------------------------------------------------- 1 | 2 | X [CUSTOM] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 3 | X dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea 4 | X commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 5 | X nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 6 | X anim id est laborum 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt: -------------------------------------------------------------------------------- 1 | 2 | § [CUSTOM] Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophatto 3 | § peristeralektryonoptekephalliokigklopeleiolagoiosiraiobaphetraganopterygon 4 | 5 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt: -------------------------------------------------------------------------------- 1 | 2 | // Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna 3 | // aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 4 | // Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur 5 | // sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum 6 | 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt: -------------------------------------------------------------------------------- 1 | 2 | $ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna 3 | $ aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 4 | $ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint 5 | $ occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum 6 | 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt: -------------------------------------------------------------------------------- 1 | 2 | [TEST] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore 3 | magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo 4 | consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla 5 | pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est 6 | laborum 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt: -------------------------------------------------------------------------------- 1 | 2 | Title ending with \ 3 | =================== 4 | 5 | Section ending with \ 6 | --------------------- 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt: -------------------------------------------------------------------------------- 1 | 2 | First title 3 | =========== 4 | 5 | Second title 6 | ============ 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum dolor sit amet 2 | 3 | First title 4 | =========== 5 | 6 | Lorem ipsum dolor sit amet 7 | 8 | Second title 9 | ============ 10 | 11 | Lorem ipsum dolor sit amet 12 | 13 | Third title 14 | =========== 15 | 16 | Lorem ipsum dolor sit amet 17 | 18 | Fourth title 19 | ============ 20 | 21 | Lorem ipsum dolor sit amet 22 | 23 | 24 | Fifth title 25 | =========== 26 | 27 | Lorem ipsum dolor sit amet 28 | 29 | 30 | Fifth title 31 | =========== 32 | 33 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt: -------------------------------------------------------------------------------- 1 | 2 | * Lorem ipsum dolor sit amet 3 | * consectetur adipiscing elit 4 | 5 | [OK] Lorem ipsum dolor sit amet 6 | 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt: -------------------------------------------------------------------------------- 1 | 2 | Title 3 | ===== 4 | 5 | Duis aute irure dolor in reprehenderit in voluptate velit esse 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt: -------------------------------------------------------------------------------- 1 | ---------------- --------------- --------------------- 2 | Main table title 3 | ---------------- --------------- --------------------- 4 | ISBN Title Author 5 | ---------------- --------------- --------------------- 6 | 978-0521567817 De Monarchia Dante Alighieri 7 | 978-0804169127 Divine Comedy spans multiple rows 8 | ---------------- --------------- --------------------- 9 | 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt: -------------------------------------------------------------------------------- 1 | 2 | X [CUSTOM] Custom block 3 | X 4 | X Second custom block line 5 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/TestTiti.php: -------------------------------------------------------------------------------- 1 | setName('test-titi') 13 | ->setDescription('The test:titi command') 14 | ; 15 | } 16 | 17 | protected function execute(InputInterface $input, OutputInterface $output) 18 | { 19 | $output->write('test-titi'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/TestToto.php: -------------------------------------------------------------------------------- 1 | setName('test-toto') 13 | ->setDescription('The test-toto command') 14 | ->setAliases(array('test')) 15 | ; 16 | } 17 | 18 | protected function execute(InputInterface $input, OutputInterface $output) 19 | { 20 | $output->write('test-toto'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Command "foo" is not defined. 4 | 5 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | The "--foo" option does not exist. 4 | 5 | 6 | list [--raw] [--format FORMAT] [--] [] 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt: -------------------------------------------------------------------------------- 1 | 2 | In Foo3Command.php line 26: 3 | 4 | Third exception comment 5 | 6 | 7 | In Foo3Command.php line 23: 8 | 9 | Second exception comment 10 | 11 | 12 | In Foo3Command.php line 21: 13 | 14 | First exception

this is html

15 | 16 | 17 | foo3:bar 18 | 19 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Command "foo" is not define 4 | d. 5 | 6 | 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line %d: 3 | 4 | エラーメッセージ 5 | 6 | 7 | foo 8 | 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line %d: 3 |   4 |  エラーメッセージ  5 |   6 | 7 | foo 8 | 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line %d: 3 | 4 | コマンドの実行中にエラーが 5 | 発生しました。 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line %d: 3 | 4 | dont break here < 5 | info>! 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line %d: 3 | 4 | line 1 with extra spaces 5 | line 2 6 | 7 | line 4 8 | 9 | 10 | foo 11 | 12 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_run1.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | 3 | Usage: 4 | command [options] [arguments] 5 | 6 | Options: 7 | -h, --help Display this help message 8 | -q, --quiet Do not output any message 9 | -V, --version Display this application version 10 | --ansi Force ANSI output 11 | --no-ansi Disable ANSI output 12 | -n, --no-interaction Do not ask any interactive question 13 | -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug 14 | 15 | Available commands: 16 | help Displays help for a command 17 | list Lists commands 18 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "descriptor:command1", 3 | "hidden": false, 4 | "usage": [ 5 | "descriptor:command1", 6 | "alias1", 7 | "alias2" 8 | ], 9 | "description": "command 1 description", 10 | "help": "command 1 help", 11 | "definition": { 12 | "arguments": [], 13 | "options": [] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_1.md: -------------------------------------------------------------------------------- 1 | `descriptor:command1` 2 | --------------------- 3 | 4 | command 1 description 5 | 6 | ### Usage 7 | 8 | * `descriptor:command1` 9 | * `alias1` 10 | * `alias2` 11 | 12 | command 1 help 13 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_1.txt: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_2.md: -------------------------------------------------------------------------------- 1 | `descriptor:command2` 2 | --------------------- 3 | 4 | command 2 description 5 | 6 | ### Usage 7 | 8 | * `descriptor:command2 [-o|--option_name] [--] ` 9 | * `descriptor:command2 -o|--option_name ` 10 | * `descriptor:command2 ` 11 | 12 | command 2 help 13 | 14 | ### Arguments 15 | 16 | #### `argument_name` 17 | 18 | * Is required: yes 19 | * Is array: no 20 | * Default: `NULL` 21 | 22 | ### Options 23 | 24 | #### `--option_name|-o` 25 | 26 | * Accept value: no 27 | * Is value required: no 28 | * Is multiple: no 29 | * Default: `false` 30 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_2.txt: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command2 [options] [--] \ 3 | descriptor:command2 -o|--option_name \ 4 | descriptor:command2 \ 5 | 6 | Arguments: 7 | argument_name 8 | 9 | Options: 10 | -o, --option_name 11 | 12 | Help: 13 | command 2 help 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_mbstring.md: -------------------------------------------------------------------------------- 1 | `descriptor:åèä` 2 | ---------------- 3 | 4 | command åèä description 5 | 6 | ### Usage 7 | 8 | * `descriptor:åèä [-o|--option_åèä] [--] ` 9 | * `descriptor:åèä -o|--option_name ` 10 | * `descriptor:åèä ` 11 | 12 | command åèä help 13 | 14 | ### Arguments 15 | 16 | #### `argument_åèä` 17 | 18 | * Is required: yes 19 | * Is array: no 20 | * Default: `NULL` 21 | 22 | ### Options 23 | 24 | #### `--option_åèä|-o` 25 | 26 | * Accept value: no 27 | * Is value required: no 28 | * Is multiple: no 29 | * Default: `false` 30 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:åèä [options] [--] \ 3 | descriptor:åèä -o|--option_name \ 4 | descriptor:åèä \ 5 | 6 | Arguments: 7 | argument_åèä 8 | 9 | Options: 10 | -o, --option_åèä 11 | 12 | Help: 13 | command åèä help 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": true, 4 | "is_array": false, 5 | "description": "", 6 | "default": null 7 | } 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_1.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | * Is required: yes 4 | * Is array: no 5 | * Default: `NULL` 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": true, 5 | "description": "argument description", 6 | "default": [] 7 | } 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_2.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: yes 7 | * Default: `array ()` 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": false, 5 | "description": "argument description", 6 | "default": "default_value" 7 | } 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_3.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'default_value'` 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | default_value 6 | 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": true, 4 | "is_array": false, 5 | "description": "multiline argument description", 6 | "default": null 7 | } 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_4.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | multiline 4 | argument description 5 | 6 | * Is required: yes 7 | * Is array: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | multiline 4 | argument description 5 | 6 | 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": false, 5 | "description": "argument description", 6 | "default": "INF" 7 | } 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `INF` 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: INF] 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | INF 6 | 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": false, 5 | "description": "argument description", 6 | "default": "style" 7 | } 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'style'` 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | <comment>style</> 6 | 7 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": [] 4 | } 5 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/composer/vendor/symfony/console/Tests/Fixtures/input_definition_1.md -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/composer/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": { 3 | "argument_name": { 4 | "name": "argument_name", 5 | "is_required": true, 6 | "is_array": false, 7 | "description": "", 8 | "default": null 9 | } 10 | }, 11 | "options": [] 12 | } 13 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments 2 | 3 | #### `argument_name` 4 | 5 | * Is required: yes 6 | * Is array: no 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": { 4 | "option_name": { 5 | "name": "--option_name", 6 | "shortcut": "-o", 7 | "accept_value": false, 8 | "is_value_required": false, 9 | "is_multiple": false, 10 | "description": "", 11 | "default": false 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options 2 | 3 | #### `--option_name|-o` 4 | 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `false` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": { 3 | "argument_name": { 4 | "name": "argument_name", 5 | "is_required": true, 6 | "is_array": false, 7 | "description": "", 8 | "default": null 9 | } 10 | }, 11 | "options": { 12 | "option_name": { 13 | "name": "--option_name", 14 | "shortcut": "-o", 15 | "accept_value": false, 16 | "is_value_required": false, 17 | "is_multiple": false, 18 | "description": "", 19 | "default": false 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_4.md: -------------------------------------------------------------------------------- 1 | ### Arguments 2 | 3 | #### `argument_name` 4 | 5 | * Is required: yes 6 | * Is array: no 7 | * Default: `NULL` 8 | 9 | ### Options 10 | 11 | #### `--option_name|-o` 12 | 13 | * Accept value: no 14 | * Is value required: no 15 | * Is multiple: no 16 | * Default: `false` 17 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": false, 5 | "is_value_required": false, 6 | "is_multiple": false, 7 | "description": "", 8 | "default": false 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | * Accept value: no 4 | * Is value required: no 5 | * Is multiple: no 6 | * Default: `false` 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": false, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": "default_value" 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `'default_value'` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": false, 6 | "is_multiple": true, 7 | "description": "option description", 8 | "default": [] 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_4.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: yes 8 | * Default: `array ()` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "multiline option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_5.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | multiline 4 | option description 5 | 6 | * Accept value: yes 7 | * Is value required: yes 8 | * Is multiple: no 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o|-O", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option with multiple shortcuts", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_6.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o|-O` 2 | 3 | option with multiple shortcuts 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_6.txt: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": false, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": "INF" 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `INF` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: INF] 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": "style" 9 | } 10 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `'style'` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": true, 7 | "description": "option description", 8 | "default": [ 9 | "Hello", 10 | "world" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: yes 8 | * Default: `array ( 0 => 'Hello', 1 => 'world',)` 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: ["\Hello\","\world\"]] (multiple values allowed) 2 | -------------------------------------------------------------------------------- /composer/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /composer/vendor/symfony/filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /composer/vendor/symfony/filesystem/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Filesystem\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | interface ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/filesystem/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Filesystem\Exception; 13 | 14 | /** 15 | * @author Christian Flothmann 16 | */ 17 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /composer/vendor/symfony/filesystem/README.md: -------------------------------------------------------------------------------- 1 | Filesystem Component 2 | ==================== 3 | 4 | The Filesystem component provides basic utilities for the filesystem. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/filesystem/index.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Mbstring 2 | =========================== 3 | 4 | This component provides a partial, native PHP implementation for the 5 | [Mbstring](http://php.net/mbstring) extension. 6 | 7 | More information can be found in the 8 | [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). 9 | 10 | License 11 | ======= 12 | 13 | This library is released under the [MIT license](LICENSE). 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Process\Exception; 13 | 14 | /** 15 | * Marker Interface for the Process Component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | interface ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Process\Exception; 13 | 14 | /** 15 | * InvalidArgumentException for the Process Component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Process\Exception; 13 | 14 | /** 15 | * LogicException for the Process Component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class LogicException extends \LogicException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Process\Exception; 13 | 14 | /** 15 | * RuntimeException for the Process Component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/README.md: -------------------------------------------------------------------------------- 1 | Process Component 2 | ================= 3 | 4 | The Process component executes commands in sub-processes. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/process.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /composer/vendor/symfony/process/Tests/SignalListener.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | pcntl_signal(SIGUSR1, function () { echo 'SIGUSR1'; exit; }); 13 | 14 | echo 'Caught '; 15 | 16 | $n = 0; 17 | 18 | while ($n++ < 400) { 19 | usleep(10000); 20 | pcntl_signal_dispatch(); 21 | } 22 | -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- 1 | 'bcrypt', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /frontassets/images/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/bg1.png -------------------------------------------------------------------------------- /frontassets/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/bg2.jpg -------------------------------------------------------------------------------- /frontassets/images/dash-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-icon1.png -------------------------------------------------------------------------------- /frontassets/images/dash-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-icon2.png -------------------------------------------------------------------------------- /frontassets/images/dash-icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-icon3.png -------------------------------------------------------------------------------- /frontassets/images/dash-icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-icon4.png -------------------------------------------------------------------------------- /frontassets/images/dash-icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-icon5.png -------------------------------------------------------------------------------- /frontassets/images/dash-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-img1.png -------------------------------------------------------------------------------- /frontassets/images/dash-img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-img2.png -------------------------------------------------------------------------------- /frontassets/images/dash-img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-img3.png -------------------------------------------------------------------------------- /frontassets/images/dash-img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-img4.png -------------------------------------------------------------------------------- /frontassets/images/dash-img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dash-img5.png -------------------------------------------------------------------------------- /frontassets/images/dolor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/dolor_icon.png -------------------------------------------------------------------------------- /frontassets/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/down-arrow.png -------------------------------------------------------------------------------- /frontassets/images/fan-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/fan-icon1.png -------------------------------------------------------------------------------- /frontassets/images/fan-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/fan-icon2.png -------------------------------------------------------------------------------- /frontassets/images/fan-icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/fan-icon3.png -------------------------------------------------------------------------------- /frontassets/images/fan-icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/fan-icon4.png -------------------------------------------------------------------------------- /frontassets/images/fan-icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/fan-icon5.png -------------------------------------------------------------------------------- /frontassets/images/fan-icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/fan-icon6.png -------------------------------------------------------------------------------- /frontassets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/favicon.png -------------------------------------------------------------------------------- /frontassets/images/folower_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/folower_icon.png -------------------------------------------------------------------------------- /frontassets/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/home-icon.png -------------------------------------------------------------------------------- /frontassets/images/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/icon-1.png -------------------------------------------------------------------------------- /frontassets/images/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/icon-2.png -------------------------------------------------------------------------------- /frontassets/images/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/icon-3.png -------------------------------------------------------------------------------- /frontassets/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/img1.png -------------------------------------------------------------------------------- /frontassets/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/img2.png -------------------------------------------------------------------------------- /frontassets/images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/img3.png -------------------------------------------------------------------------------- /frontassets/images/infor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/infor.png -------------------------------------------------------------------------------- /frontassets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/logo.png -------------------------------------------------------------------------------- /frontassets/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/logo1.png -------------------------------------------------------------------------------- /frontassets/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/logo2.png -------------------------------------------------------------------------------- /frontassets/images/msg-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/msg-icon.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon1.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon10.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon11.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon12.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon13.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon2.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon3.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon4.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon5.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon6.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon7.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon8.png -------------------------------------------------------------------------------- /frontassets/images/noti-icon9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/noti-icon9.png -------------------------------------------------------------------------------- /frontassets/images/profile-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/profile-img1.png -------------------------------------------------------------------------------- /frontassets/images/profile-img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/profile-img2.png -------------------------------------------------------------------------------- /frontassets/images/profile-img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/profile-img3.png -------------------------------------------------------------------------------- /frontassets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/profile.png -------------------------------------------------------------------------------- /frontassets/images/shap-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/shap-icon1.png -------------------------------------------------------------------------------- /frontassets/images/shape-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/shape-icon2.png -------------------------------------------------------------------------------- /frontassets/images/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/frontassets/images/tw.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /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/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/categoryimages/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/Desert.jpg -------------------------------------------------------------------------------- /public/uploads/categoryimages/Hydrangeas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/Hydrangeas.jpg -------------------------------------------------------------------------------- /public/uploads/categoryimages/Jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/Jellyfish.jpg -------------------------------------------------------------------------------- /public/uploads/categoryimages/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/Koala.jpg -------------------------------------------------------------------------------- /public/uploads/categoryimages/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/Tulips.jpg -------------------------------------------------------------------------------- /public/uploads/categoryimages/dddddddddd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/dddddddddd.jpg -------------------------------------------------------------------------------- /public/uploads/categoryimages/property-20180404001112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/categoryimages/property-20180404001112.png -------------------------------------------------------------------------------- /public/uploads/productimages/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/Desert.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/Hydrangeas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/Hydrangeas.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/Jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/Jellyfish.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/Koala.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/Lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/Lighthouse.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/Tulips.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/mini.jpg -------------------------------------------------------------------------------- /public/uploads/productimages/property-20180404001112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimages/property-20180404001112.png -------------------------------------------------------------------------------- /public/uploads/productimagesJellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salmanfleekbiz/onlyfans/9fc06b50def340a2c6cbd213381d6527799a1d4b/public/uploads/productimagesJellyfish.jpg -------------------------------------------------------------------------------- /resources/assets/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | 2 | // Body 3 | $body-bg: #f5f8fa; 4 | 5 | // Typography 6 | $font-family-sans-serif: "Raleway", sans-serif; 7 | $font-size-base: 0.9rem; 8 | $line-height-base: 1.6; 9 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | 2 | // Fonts 3 | @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600"); 4 | 5 | // Variables 6 | @import "variables"; 7 | 8 | // Bootstrap 9 | @import '~bootstrap/scss/bootstrap'; 10 | 11 | .navbar-laravel { 12 | background-color: #fff; 13 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); 14 | } 15 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/views/admin/home.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin.layout.head') 2 | @section('description') 3 | This is Personal Details 4 | @endsection 5 | @section('title') 6 | Only Fans - Admin Dashboard 7 | @endsection 8 | @section('contents') 9 | @include('admin.layout.sidebar') 10 | @endsection -------------------------------------------------------------------------------- /resources/views/admin/layout/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/front/layout/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/front/messages/messages.blade.php: -------------------------------------------------------------------------------- 1 | @extends('front.layout.head') 2 | @section('description') 3 | This is Personal Details 4 | @endsection 5 | @section('title') 6 | Onlyfans 7 | @endsection 8 | @section('contents') 9 |
10 | Show Message Html ..... 11 | 12 | @endsection -------------------------------------------------------------------------------- /resources/views/front/setting/advancedsetting.blade.php: -------------------------------------------------------------------------------- 1 | @extends('front.layout.head') 2 | @section('description') 3 | This is Personal Details 4 | @endsection 5 | @section('title') 6 | Onlyfans 7 | @endsection 8 | @section('contents') 9 |
10 | Show Advanced Setting Html Here........ 11 | 12 | @endsection -------------------------------------------------------------------------------- /resources/views/front/setting/setting.blade.php: -------------------------------------------------------------------------------- 1 | @extends('front.layout.head') 2 | @section('description') 3 | This is Personal Details 4 | @endsection 5 | @section('title') 6 | Onlyfans 7 | @endsection 8 | @section('contents') 9 |
10 | Show Setting Html Here........ 11 | 12 | @endsection -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 20 | 21 | Hash::driver('bcrypt')->setRounds(4); 22 | 23 | return $app; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | let mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/assets/js/app.js', 'public/js') 15 | .sass('resources/assets/sass/app.scss', 'public/css'); 16 | --------------------------------------------------------------------------------