├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── app ├── Console │ └── Commands │ │ └── ResetCommand.php ├── Http │ └── Controllers │ │ ├── ArticleController.php │ │ ├── Controller.php │ │ └── DictionaryController.php ├── Models │ ├── Article.php │ ├── Category.php │ ├── Comment.php │ ├── Dictionary.php │ ├── Setting.php │ └── User.php ├── MoonShine │ ├── Actions │ │ └── ArticleMassActive.php │ ├── Components │ │ └── DemoVersionComponent.php │ ├── Forms │ │ └── LoginForm.php │ ├── Http │ │ ├── Controllers │ │ │ ├── ArticleController.php │ │ │ └── ProfileController.php │ │ └── Requests │ │ │ └── ArticleMassActiveFormRequest.php │ ├── Layouts │ │ └── MoonShineLayout.php │ ├── Pages │ │ ├── Dashboard.php │ │ └── ProfilePage.php │ ├── Resources │ │ ├── Article │ │ │ ├── ArticleResource.php │ │ │ └── Pages │ │ │ │ ├── ArticleDetailPage.php │ │ │ │ ├── ArticleFormPage.php │ │ │ │ └── ArticleIndexPage.php │ │ ├── Category │ │ │ ├── CategoryResource.php │ │ │ └── Pages │ │ │ │ ├── CategoryDetailPage.php │ │ │ │ ├── CategoryFormPage.php │ │ │ │ └── CategoryIndexPage.php │ │ ├── Comment │ │ │ ├── CommentResource.php │ │ │ └── Pages │ │ │ │ ├── CommentDetailPage.php │ │ │ │ ├── CommentFormPage.php │ │ │ │ └── CommentIndexPage.php │ │ ├── Dictionary │ │ │ ├── DictionaryResource.php │ │ │ └── Pages │ │ │ │ ├── DictionaryDetailPage.php │ │ │ │ ├── DictionaryFormPage.php │ │ │ │ └── DictionaryIndexPage.php │ │ ├── MoonShineUser │ │ │ ├── MoonShineUserResource.php │ │ │ └── Pages │ │ │ │ ├── MoonShineUserFormPage.php │ │ │ │ └── MoonShineUserIndexPage.php │ │ ├── MoonShineUserRole │ │ │ ├── MoonShineUserRoleResource.php │ │ │ └── Pages │ │ │ │ ├── MoonShineUserRoleFormPage.php │ │ │ │ └── MoonShineUserRoleIndexPage.php │ │ ├── Setting │ │ │ ├── Pages │ │ │ │ └── SettingPage.php │ │ │ └── SettingResource.php │ │ └── User │ │ │ ├── Pages │ │ │ ├── UserDetailPage.php │ │ │ ├── UserFormPage.php │ │ │ └── UserIndexPage.php │ │ │ └── UserResource.php │ └── Sets │ │ └── DashboardTableWithForm.php ├── Policies │ ├── ArticlePolicy.php │ ├── CategoryPolicy.php │ ├── DictionaryPolicy.php │ ├── MoonshineUserPolicy.php │ └── MoonshineUserRolePolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── MoonShineServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── debugbar.php ├── filesystems.php ├── logging.php ├── mail.php ├── moonshine.php ├── queue.php ├── services.php ├── session.php └── thumbnails.php ├── database ├── .gitignore ├── factories │ ├── ArticleFactory.php │ ├── CategoryFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_09_14_083721_create_articles_table.php │ ├── 2022_09_14_083733_create_dictionaries_table.php │ ├── 2022_09_14_164307_create_categories_table.php │ ├── 2022_10_30_143621_create_article_category_table.php │ ├── 2022_11_08_125431_add_slugs.php │ ├── 2022_11_13_103940_add_author_id_column_to_articles.php │ ├── 2022_11_13_103940_add_seo_columns_to_articles.php │ ├── 2023_01_06_094236_create_comments_table.php │ ├── 2023_01_07_184655_create_jobs_table.php │ ├── 2023_03_18_182739_add_new_columns.php │ ├── 2023_03_21_153639_add_new_column_to_comments.php │ ├── 2023_06_12_101633_create_settings_table.php │ ├── 2023_06_12_101646_category_sorting.php │ └── 2024_11_03_100651_create_notifications_table.php └── seeders │ └── DatabaseSeeder.php ├── docker-compose.yml ├── docker ├── dockerfiles │ ├── mysql │ │ ├── Dockerfile │ │ └── config │ │ │ ├── create_database.sql │ │ │ └── mysql.cnf │ ├── nginx │ │ ├── Dockerfile │ │ └── config │ │ │ └── nginx-php.conf │ ├── node │ │ └── Dockerfile │ └── php │ │ ├── Dockerfile │ │ └── config │ │ ├── php-dev.ini │ │ └── php-fpm.conf └── volumes │ └── Nginx │ └── logs │ ├── error.log │ └── moonshine-demo.error.log ├── lang ├── en │ └── demo.php └── vendor │ └── moonshine │ ├── en │ ├── auth.php │ ├── pagination.php │ ├── ui.php │ └── validation.php │ └── ru │ ├── auth.php │ ├── pagination.php │ ├── ui.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── build │ ├── assets │ │ ├── Gilroy-Black-nANOiXFK.woff2 │ │ ├── Gilroy-Bold-Dni6zD24.woff2 │ │ ├── Gilroy-Medium-D1zFn0pQ.woff2 │ │ ├── Gilroy-Regular-CCqYxGVy.woff2 │ │ ├── Gilroy-SemiBold-BaPzwWK_.woff2 │ │ ├── app-Bp-CYfc8.css │ │ ├── app-DN0QLku3.js │ │ ├── checking-CKUZJxCX.svg │ │ ├── done-ZzgB3sss.svg │ │ ├── main-DyfnTUA3.css │ │ ├── progress-DRgMYITu.svg │ │ └── time-forward-DgdvVou1.svg │ └── manifest.json ├── favicon.ico ├── fonts │ ├── Gilroy-Black.ttf │ ├── Gilroy-Black.woff2 │ ├── Gilroy-Bold.ttf │ ├── Gilroy-Bold.woff2 │ ├── Gilroy-Medium.ttf │ ├── Gilroy-Medium.woff2 │ ├── Gilroy-Regular.ttf │ ├── Gilroy-Regular.woff2 │ ├── Gilroy-SemiBold.ttf │ └── Gilroy-SemiBold.woff2 ├── images │ ├── checking.svg │ ├── cookies.png │ ├── done.svg │ ├── icons │ │ ├── telegram.svg │ │ └── youtube.svg │ ├── logo-dark.svg │ ├── logo-icon.svg │ ├── logo.svg │ ├── progress.svg │ ├── projects │ │ ├── development.jpg │ │ ├── livewire.jpg │ │ ├── moonshine.jpg │ │ ├── solid.jpg │ │ ├── telegram.jpg │ │ └── youtube.jpg │ ├── template.jpg │ ├── time-forward.svg │ └── watermark.svg ├── index.php ├── robots.txt ├── site.webmanifest └── vendor │ ├── moonshine-advanced │ ├── app.js │ ├── css │ │ └── main.css │ ├── js │ │ └── app.js │ └── manifest.json │ ├── moonshine-apexcharts │ └── apexcharts.js │ ├── moonshine-tinymce │ ├── icons │ │ └── default │ │ │ └── icons.min.js │ ├── init.js │ ├── langs │ │ ├── README.md │ │ ├── ru.js │ │ └── uk.js │ ├── license.md │ ├── models │ │ └── dom │ │ │ └── model.min.js │ ├── plugins │ │ ├── accordion │ │ │ └── plugin.min.js │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojiimages.js │ │ │ │ ├── emojiimages.min.js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── js │ │ │ │ └── i18n │ │ │ │ │ └── keynav │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg_BG.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr_FR.js │ │ │ │ │ ├── he_IL.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu_HU.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── ko_KR.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb_NO.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_BR.js │ │ │ │ │ ├── pt_PT.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl_SI.js │ │ │ │ │ ├── sv_SE.js │ │ │ │ │ ├── th_TH.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ └── zh_TW.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ ├── themes │ │ └── silver │ │ │ └── theme.min.js │ ├── tinymce.css │ ├── tinymce.d.ts │ └── tinymce.min.js │ ├── moonshine-tree │ └── tree.css │ └── moonshine │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── assets │ ├── app.js │ └── main.css │ ├── avatar.jpg │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ ├── Gilroy-Black.woff2 │ ├── Gilroy-Bold.woff2 │ ├── Gilroy-Medium.woff2 │ ├── Gilroy-Regular.woff2 │ └── Gilroy-SemiBold.woff2 │ ├── logo-app.svg │ ├── logo-small.svg │ ├── logo.svg │ ├── manifest.json │ ├── mstile-150x150.png │ ├── robots.txt │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── resources ├── css │ └── app.css ├── fonts │ ├── Gilroy-Black.ttf │ ├── Gilroy-Black.woff2 │ ├── Gilroy-Bold.ttf │ ├── Gilroy-Bold.woff2 │ ├── Gilroy-Medium.ttf │ ├── Gilroy-Medium.woff2 │ ├── Gilroy-Regular.ttf │ ├── Gilroy-Regular.woff2 │ ├── Gilroy-SemiBold.ttf │ └── Gilroy-SemiBold.woff2 ├── images │ └── icons │ │ ├── checking.svg │ │ ├── done.svg │ │ ├── play.svg │ │ ├── progress.svg │ │ ├── telegram.svg │ │ ├── time-forward.svg │ │ ├── time.svg │ │ └── youtube.svg ├── js │ ├── app.js │ ├── bootstrap.js │ └── main.js ├── sass │ ├── _components.sass │ ├── _mixins.sass │ └── main.sass └── views │ ├── admin │ └── components │ │ └── demo-version-component.blade.php │ ├── articles │ ├── index.blade.php │ ├── shared │ │ ├── author.blade.php │ │ ├── categories.blade.php │ │ └── item.blade.php │ └── show.blade.php │ ├── components │ ├── button.blade.php │ └── title.blade.php │ ├── dictionaries │ ├── index.blade.php │ ├── shared │ │ └── item.blade.php │ └── show.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── moonshine │ └── components │ │ └── example-component.blade.php │ ├── shared │ ├── alert.blade.php │ ├── card.blade.php │ ├── footer.blade.php │ └── header.blade.php │ └── vendor │ └── pagination │ └── tailwind.blade.php ├── routes ├── console.php ├── moonshine.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Console/Commands/ResetCommand.php -------------------------------------------------------------------------------- /app/Http/Controllers/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Http/Controllers/ArticleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DictionaryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Http/Controllers/DictionaryController.php -------------------------------------------------------------------------------- /app/Models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Models/Article.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Models/Dictionary.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/MoonShine/Actions/ArticleMassActive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Actions/ArticleMassActive.php -------------------------------------------------------------------------------- /app/MoonShine/Components/DemoVersionComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Components/DemoVersionComponent.php -------------------------------------------------------------------------------- /app/MoonShine/Forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Forms/LoginForm.php -------------------------------------------------------------------------------- /app/MoonShine/Http/Controllers/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Http/Controllers/ArticleController.php -------------------------------------------------------------------------------- /app/MoonShine/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/MoonShine/Http/Requests/ArticleMassActiveFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Http/Requests/ArticleMassActiveFormRequest.php -------------------------------------------------------------------------------- /app/MoonShine/Layouts/MoonShineLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Layouts/MoonShineLayout.php -------------------------------------------------------------------------------- /app/MoonShine/Pages/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Pages/Dashboard.php -------------------------------------------------------------------------------- /app/MoonShine/Pages/ProfilePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Pages/ProfilePage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Article/ArticleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Article/ArticleResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Article/Pages/ArticleDetailPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Article/Pages/ArticleDetailPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Article/Pages/ArticleFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Article/Pages/ArticleFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Article/Pages/ArticleIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Article/Pages/ArticleIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Category/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Category/CategoryResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Category/Pages/CategoryDetailPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Category/Pages/CategoryDetailPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Category/Pages/CategoryFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Category/Pages/CategoryFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Category/Pages/CategoryIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Category/Pages/CategoryIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Comment/CommentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Comment/CommentResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Comment/Pages/CommentDetailPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Comment/Pages/CommentDetailPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Comment/Pages/CommentFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Comment/Pages/CommentFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Comment/Pages/CommentIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Comment/Pages/CommentIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Dictionary/DictionaryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Dictionary/DictionaryResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Dictionary/Pages/DictionaryDetailPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Dictionary/Pages/DictionaryDetailPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Dictionary/Pages/DictionaryFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Dictionary/Pages/DictionaryFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Dictionary/Pages/DictionaryIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Dictionary/Pages/DictionaryIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/MoonShineUser/MoonShineUserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/MoonShineUser/MoonShineUserResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/MoonShineUser/Pages/MoonShineUserFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/MoonShineUser/Pages/MoonShineUserFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/MoonShineUser/Pages/MoonShineUserIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/MoonShineUser/Pages/MoonShineUserIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/MoonShineUserRole/MoonShineUserRoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/MoonShineUserRole/MoonShineUserRoleResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/MoonShineUserRole/Pages/MoonShineUserRoleFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/MoonShineUserRole/Pages/MoonShineUserRoleFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/MoonShineUserRole/Pages/MoonShineUserRoleIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/MoonShineUserRole/Pages/MoonShineUserRoleIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Setting/Pages/SettingPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Setting/Pages/SettingPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/Setting/SettingResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/Setting/SettingResource.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/User/Pages/UserDetailPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/User/Pages/UserDetailPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/User/Pages/UserFormPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/User/Pages/UserFormPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/User/Pages/UserIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/User/Pages/UserIndexPage.php -------------------------------------------------------------------------------- /app/MoonShine/Resources/User/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Resources/User/UserResource.php -------------------------------------------------------------------------------- /app/MoonShine/Sets/DashboardTableWithForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/MoonShine/Sets/DashboardTableWithForm.php -------------------------------------------------------------------------------- /app/Policies/ArticlePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Policies/ArticlePolicy.php -------------------------------------------------------------------------------- /app/Policies/CategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Policies/CategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/DictionaryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Policies/DictionaryPolicy.php -------------------------------------------------------------------------------- /app/Policies/MoonshineUserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Policies/MoonshineUserPolicy.php -------------------------------------------------------------------------------- /app/Policies/MoonshineUserRolePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Policies/MoonshineUserRolePolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/MoonShineServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Providers/MoonShineServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/moonshine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/moonshine.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/session.php -------------------------------------------------------------------------------- /config/thumbnails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/config/thumbnails.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/ArticleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/factories/ArticleFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2022_09_14_083721_create_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_09_14_083721_create_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2022_09_14_083733_create_dictionaries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_09_14_083733_create_dictionaries_table.php -------------------------------------------------------------------------------- /database/migrations/2022_09_14_164307_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_09_14_164307_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2022_10_30_143621_create_article_category_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_10_30_143621_create_article_category_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_08_125431_add_slugs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_11_08_125431_add_slugs.php -------------------------------------------------------------------------------- /database/migrations/2022_11_13_103940_add_author_id_column_to_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_11_13_103940_add_author_id_column_to_articles.php -------------------------------------------------------------------------------- /database/migrations/2022_11_13_103940_add_seo_columns_to_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2022_11_13_103940_add_seo_columns_to_articles.php -------------------------------------------------------------------------------- /database/migrations/2023_01_06_094236_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2023_01_06_094236_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_01_07_184655_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2023_01_07_184655_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2023_03_18_182739_add_new_columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2023_03_18_182739_add_new_columns.php -------------------------------------------------------------------------------- /database/migrations/2023_03_21_153639_add_new_column_to_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2023_03_21_153639_add_new_column_to_comments.php -------------------------------------------------------------------------------- /database/migrations/2023_06_12_101633_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2023_06_12_101633_create_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_12_101646_category_sorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2023_06_12_101646_category_sorting.php -------------------------------------------------------------------------------- /database/migrations/2024_11_03_100651_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/migrations/2024_11_03_100651_create_notifications_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/dockerfiles/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/mysql/Dockerfile -------------------------------------------------------------------------------- /docker/dockerfiles/mysql/config/create_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/mysql/config/create_database.sql -------------------------------------------------------------------------------- /docker/dockerfiles/mysql/config/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/mysql/config/mysql.cnf -------------------------------------------------------------------------------- /docker/dockerfiles/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/dockerfiles/nginx/config/nginx-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/nginx/config/nginx-php.conf -------------------------------------------------------------------------------- /docker/dockerfiles/node/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:21.7.1-alpine3.18 -------------------------------------------------------------------------------- /docker/dockerfiles/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/php/Dockerfile -------------------------------------------------------------------------------- /docker/dockerfiles/php/config/php-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/php/config/php-dev.ini -------------------------------------------------------------------------------- /docker/dockerfiles/php/config/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/docker/dockerfiles/php/config/php-fpm.conf -------------------------------------------------------------------------------- /docker/volumes/Nginx/logs/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/volumes/Nginx/logs/moonshine-demo.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lang/en/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/en/demo.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/en/auth.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/en/pagination.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/en/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/en/ui.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/en/validation.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/ru/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/ru/auth.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/ru/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/ru/pagination.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/ru/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/ru/ui.php -------------------------------------------------------------------------------- /lang/vendor/moonshine/ru/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/lang/vendor/moonshine/ru/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/build/assets/Gilroy-Black-nANOiXFK.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/Gilroy-Black-nANOiXFK.woff2 -------------------------------------------------------------------------------- /public/build/assets/Gilroy-Bold-Dni6zD24.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/Gilroy-Bold-Dni6zD24.woff2 -------------------------------------------------------------------------------- /public/build/assets/Gilroy-Medium-D1zFn0pQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/Gilroy-Medium-D1zFn0pQ.woff2 -------------------------------------------------------------------------------- /public/build/assets/Gilroy-Regular-CCqYxGVy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/Gilroy-Regular-CCqYxGVy.woff2 -------------------------------------------------------------------------------- /public/build/assets/Gilroy-SemiBold-BaPzwWK_.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/Gilroy-SemiBold-BaPzwWK_.woff2 -------------------------------------------------------------------------------- /public/build/assets/app-Bp-CYfc8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/app-Bp-CYfc8.css -------------------------------------------------------------------------------- /public/build/assets/app-DN0QLku3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/app-DN0QLku3.js -------------------------------------------------------------------------------- /public/build/assets/checking-CKUZJxCX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/checking-CKUZJxCX.svg -------------------------------------------------------------------------------- /public/build/assets/done-ZzgB3sss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/done-ZzgB3sss.svg -------------------------------------------------------------------------------- /public/build/assets/main-DyfnTUA3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/main-DyfnTUA3.css -------------------------------------------------------------------------------- /public/build/assets/progress-DRgMYITu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/progress-DRgMYITu.svg -------------------------------------------------------------------------------- /public/build/assets/time-forward-DgdvVou1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/assets/time-forward-DgdvVou1.svg -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/Gilroy-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Black.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/Gilroy-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/Gilroy-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/Gilroy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Gilroy-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-SemiBold.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/fonts/Gilroy-SemiBold.woff2 -------------------------------------------------------------------------------- /public/images/checking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/checking.svg -------------------------------------------------------------------------------- /public/images/cookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/cookies.png -------------------------------------------------------------------------------- /public/images/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/done.svg -------------------------------------------------------------------------------- /public/images/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/icons/telegram.svg -------------------------------------------------------------------------------- /public/images/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/icons/youtube.svg -------------------------------------------------------------------------------- /public/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/logo-icon.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/progress.svg -------------------------------------------------------------------------------- /public/images/projects/development.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/projects/development.jpg -------------------------------------------------------------------------------- /public/images/projects/livewire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/projects/livewire.jpg -------------------------------------------------------------------------------- /public/images/projects/moonshine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/projects/moonshine.jpg -------------------------------------------------------------------------------- /public/images/projects/solid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/projects/solid.jpg -------------------------------------------------------------------------------- /public/images/projects/telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/projects/telegram.jpg -------------------------------------------------------------------------------- /public/images/projects/youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/projects/youtube.jpg -------------------------------------------------------------------------------- /public/images/template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/template.jpg -------------------------------------------------------------------------------- /public/images/time-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/time-forward.svg -------------------------------------------------------------------------------- /public/images/watermark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/images/watermark.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/vendor/moonshine-advanced/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-advanced/app.js -------------------------------------------------------------------------------- /public/vendor/moonshine-advanced/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-advanced/css/main.css -------------------------------------------------------------------------------- /public/vendor/moonshine-advanced/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-advanced/js/app.js -------------------------------------------------------------------------------- /public/vendor/moonshine-advanced/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-advanced/manifest.json -------------------------------------------------------------------------------- /public/vendor/moonshine-apexcharts/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-apexcharts/apexcharts.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/icons/default/icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/icons/default/icons.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/init.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/langs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/langs/README.md -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/langs/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/langs/ru.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/langs/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/langs/uk.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/license.md -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/models/dom/model.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/models/dom/model.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/accordion/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/accordion/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/advlist/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/advlist/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/anchor/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/autolink/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/autolink/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/autoresize/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/autoresize/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/autosave/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/autosave/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/charmap/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/charmap/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/code/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/codesample/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/codesample/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/directionality/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/directionality/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/emoticons/js/emojiimages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/emoticons/js/emojiimages.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/emoticons/js/emojiimages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/emoticons/js/emojiimages.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/emoticons/js/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/emoticons/js/emojis.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/emoticons/js/emojis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/emoticons/js/emojis.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/emoticons/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/emoticons/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/fullscreen/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/fullscreen/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ar.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/bg_BG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/bg_BG.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ca.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/cs.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/da.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/de.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/el.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/en.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/es.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/eu.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/fa.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/fi.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/fr_FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/fr_FR.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/he_IL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/he_IL.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/hi.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/hr.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/hu_HU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/hu_HU.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/id.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/it.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ja.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/kk.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ko_KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ko_KR.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ms.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/nb_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/nb_NO.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/nl.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/pl.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/pt_BR.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/pt_PT.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ro.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/ru.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/sk.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/sl_SI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/sl_SI.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/sv_SE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/sv_SE.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/th_TH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/th_TH.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/tr.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/uk.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/vi.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/zh_CN.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/js/i18n/keynav/zh_TW.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/help/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/help/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/image/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/image/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/importcss/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/importcss/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/insertdatetime/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/insertdatetime/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/link/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/link/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/lists/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/lists/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/media/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/media/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/nonbreaking/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/nonbreaking/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/pagebreak/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/pagebreak/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/preview/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/preview/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/quickbars/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/quickbars/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/save/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/save/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/searchreplace/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/searchreplace/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/table/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/table/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/visualblocks/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/visualblocks/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/visualchars/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/visualchars/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/plugins/wordcount/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/plugins/wordcount/plugin.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/dark/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/dark/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/dark/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/dark/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/default/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/default/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/default/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/default/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/document/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/document/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/document/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/document/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/tinymce-5-dark/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/tinymce-5-dark/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/tinymce-5-dark/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/tinymce-5-dark/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/tinymce-5/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/tinymce-5/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/tinymce-5/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/tinymce-5/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/writer/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/writer/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/content/writer/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/content/writer/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.inline.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.inline.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.inline.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.shadowdom.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/content.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/content.inline.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/content.inline.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/content.inline.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/content.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/content.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/skin.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/skin.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/skin.shadowdom.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/oxide/skin.shadowdom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/oxide/skin.shadowdom.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/tinymce-5/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/tinymce-5/skin.shadowdom.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/themes/silver/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/themes/silver/theme.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/tinymce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/tinymce.css -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/tinymce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/tinymce.d.ts -------------------------------------------------------------------------------- /public/vendor/moonshine-tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tinymce/tinymce.min.js -------------------------------------------------------------------------------- /public/vendor/moonshine-tree/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine-tree/tree.css -------------------------------------------------------------------------------- /public/vendor/moonshine/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/vendor/moonshine/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/vendor/moonshine/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/apple-touch-icon.png -------------------------------------------------------------------------------- /public/vendor/moonshine/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/assets/app.js -------------------------------------------------------------------------------- /public/vendor/moonshine/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/assets/main.css -------------------------------------------------------------------------------- /public/vendor/moonshine/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/avatar.jpg -------------------------------------------------------------------------------- /public/vendor/moonshine/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/browserconfig.xml -------------------------------------------------------------------------------- /public/vendor/moonshine/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/favicon-16x16.png -------------------------------------------------------------------------------- /public/vendor/moonshine/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/favicon-32x32.png -------------------------------------------------------------------------------- /public/vendor/moonshine/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/favicon.ico -------------------------------------------------------------------------------- /public/vendor/moonshine/fonts/Gilroy-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/fonts/Gilroy-Black.woff2 -------------------------------------------------------------------------------- /public/vendor/moonshine/fonts/Gilroy-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/fonts/Gilroy-Bold.woff2 -------------------------------------------------------------------------------- /public/vendor/moonshine/fonts/Gilroy-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/fonts/Gilroy-Medium.woff2 -------------------------------------------------------------------------------- /public/vendor/moonshine/fonts/Gilroy-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/fonts/Gilroy-Regular.woff2 -------------------------------------------------------------------------------- /public/vendor/moonshine/fonts/Gilroy-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/fonts/Gilroy-SemiBold.woff2 -------------------------------------------------------------------------------- /public/vendor/moonshine/logo-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/logo-app.svg -------------------------------------------------------------------------------- /public/vendor/moonshine/logo-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/logo-small.svg -------------------------------------------------------------------------------- /public/vendor/moonshine/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/logo.svg -------------------------------------------------------------------------------- /public/vendor/moonshine/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/manifest.json -------------------------------------------------------------------------------- /public/vendor/moonshine/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/mstile-150x150.png -------------------------------------------------------------------------------- /public/vendor/moonshine/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/moonshine/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/vendor/moonshine/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/public/vendor/moonshine/site.webmanifest -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Black.woff2 -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Bold.woff2 -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Medium.woff2 -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Gilroy-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-Regular.woff2 -------------------------------------------------------------------------------- /resources/fonts/Gilroy-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-SemiBold.ttf -------------------------------------------------------------------------------- /resources/fonts/Gilroy-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/fonts/Gilroy-SemiBold.woff2 -------------------------------------------------------------------------------- /resources/images/icons/checking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/checking.svg -------------------------------------------------------------------------------- /resources/images/icons/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/done.svg -------------------------------------------------------------------------------- /resources/images/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/play.svg -------------------------------------------------------------------------------- /resources/images/icons/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/progress.svg -------------------------------------------------------------------------------- /resources/images/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/telegram.svg -------------------------------------------------------------------------------- /resources/images/icons/time-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/time-forward.svg -------------------------------------------------------------------------------- /resources/images/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/time.svg -------------------------------------------------------------------------------- /resources/images/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/images/icons/youtube.svg -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/js/main.js -------------------------------------------------------------------------------- /resources/sass/_components.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/sass/_components.sass -------------------------------------------------------------------------------- /resources/sass/_mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/sass/_mixins.sass -------------------------------------------------------------------------------- /resources/sass/main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/sass/main.sass -------------------------------------------------------------------------------- /resources/views/admin/components/demo-version-component.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/admin/components/demo-version-component.blade.php -------------------------------------------------------------------------------- /resources/views/articles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/articles/index.blade.php -------------------------------------------------------------------------------- /resources/views/articles/shared/author.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/articles/shared/author.blade.php -------------------------------------------------------------------------------- /resources/views/articles/shared/categories.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/articles/shared/categories.blade.php -------------------------------------------------------------------------------- /resources/views/articles/shared/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/articles/shared/item.blade.php -------------------------------------------------------------------------------- /resources/views/articles/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/articles/show.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/components/title.blade.php -------------------------------------------------------------------------------- /resources/views/dictionaries/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/dictionaries/index.blade.php -------------------------------------------------------------------------------- /resources/views/dictionaries/shared/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/dictionaries/shared/item.blade.php -------------------------------------------------------------------------------- /resources/views/dictionaries/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/dictionaries/show.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/moonshine/components/example-component.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/moonshine/components/example-component.blade.php -------------------------------------------------------------------------------- /resources/views/shared/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/shared/alert.blade.php -------------------------------------------------------------------------------- /resources/views/shared/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/shared/card.blade.php -------------------------------------------------------------------------------- /resources/views/shared/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/shared/footer.blade.php -------------------------------------------------------------------------------- /resources/views/shared/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/shared/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/resources/views/vendor/pagination/tailwind.blade.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/moonshine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/routes/moonshine.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonshine-software/demo-project/HEAD/vite.config.js --------------------------------------------------------------------------------