├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md └── dependabot.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── docs └── screens │ ├── CRUD-Interface.png │ ├── Checkout-Interface.jpg │ ├── Dashboard-Interface.jpg │ ├── Hello.png │ ├── OpenCollective.png │ ├── Post-Interface.jpg │ ├── Settings-Interface.jpg │ └── Yah.jpg ├── lib ├── Commands │ ├── DashboardTemplate.php │ └── LaravelDashInstall.php ├── Configuration.php ├── Controllers │ ├── CheckoutController.php │ ├── DashboardController.php │ ├── ManageController.php │ ├── PostController.php │ ├── SellController.php │ ├── SettingsController.php │ ├── StoreController.php │ └── SubscribeController.php ├── Events │ └── NotificationEvent.php ├── Helper │ ├── Assets.php │ └── Helper.php ├── Kit │ └── BrowserKitTesting.php ├── Listeners │ └── NotificationListeners.php ├── Models │ ├── Attachement.php │ ├── Buy.php │ ├── Categories.php │ ├── Country.php │ ├── Devices.php │ ├── Followers.php │ ├── Post.php │ ├── Store.php │ └── UserInformation.php ├── Notifications │ └── DashboardNotification.php ├── Providers │ ├── DashboardServiceProvider.php │ └── EventServiceProvider.php ├── Stubs │ └── template.blade.php └── Traits │ ├── Assets.php │ └── UserRelation.php ├── migrations ├── 2020_02_27_080903_create_followers_table.php ├── 2020_02_28_143101_create_stores_table.php ├── 2020_07_27_152149_create_posts_table.php ├── 2020_07_27_182119_create_attachements_table.php ├── 2020_07_28_094627_create_categories_table.php ├── 2020_07_28_225824_create_devices_table.php ├── 2020_07_29_091050_create_notifications_table.php ├── 2020_07_29_220625_create_buys_table.php ├── 2020_07_29_225426_create_jobs_table.php ├── 2020_07_6_002209_create_countries_table.php ├── 2020_07_6_002218_create_countries_data_table.php └── 2020_07_7_095148_create_user_informations_table.php ├── mix-manifest.json ├── package.json ├── published ├── .gitignore ├── css │ └── app.css ├── images │ ├── Mastercard.png │ ├── Paypal.png │ ├── Post.png │ ├── Sell.jpg │ └── Visa.png ├── js │ └── app.js └── other │ └── settings.svg ├── resources ├── fonts │ ├── nucleo-icons.eot │ ├── nucleo-icons.svg │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ └── nucleo-icons.woff2 ├── js │ ├── app.js │ ├── bootstrap.js │ └── component │ │ ├── Chart.vue │ │ ├── Editor.vue │ │ ├── Manage.vue │ │ └── Stripe.vue ├── sass │ ├── app.scss │ ├── footer.scss │ ├── index.scss │ ├── sell.scss │ └── store.scss └── views │ ├── .DS_Store │ ├── checkout.blade.php │ ├── components │ ├── footer.blade.php │ ├── navbar.blade.php │ ├── order.blade.php │ ├── payment.blade.php │ ├── referrals.blade.php │ ├── sidebar.blade.php │ ├── state.blade.php │ └── validation.blade.php │ ├── index.blade.php │ ├── layouts │ └── master.blade.php │ ├── manage.blade.php │ ├── posts │ ├── display-posts.blade.php │ ├── post-show.blade.php │ └── post.blade.php │ ├── sell.blade.php │ ├── store.blade.php │ ├── users │ ├── settings.blade.php │ └── users.blade.php │ └── welcome.blade.php ├── routes └── web.php ├── scripts └── prepare.sh ├── tests ├── Events │ └── NotificationEventTest.php ├── Models │ ├── CategoriesTest.php │ ├── PostTest.php │ └── StoreTest.php ├── Routes │ └── RouteTest.php └── Views │ ├── DashboardTest.php │ ├── PostTest.php │ ├── SettingsTest.php │ ├── StoreTest.php │ └── UsersTest.php ├── web ├── doc.html ├── index.html ├── laraveldash-doc.css ├── laraveldash-global.css ├── laraveldash-landing.css └── laraveldash.js ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/composer.json -------------------------------------------------------------------------------- /docs/screens/CRUD-Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/CRUD-Interface.png -------------------------------------------------------------------------------- /docs/screens/Checkout-Interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/Checkout-Interface.jpg -------------------------------------------------------------------------------- /docs/screens/Dashboard-Interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/Dashboard-Interface.jpg -------------------------------------------------------------------------------- /docs/screens/Hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/Hello.png -------------------------------------------------------------------------------- /docs/screens/OpenCollective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/OpenCollective.png -------------------------------------------------------------------------------- /docs/screens/Post-Interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/Post-Interface.jpg -------------------------------------------------------------------------------- /docs/screens/Settings-Interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/Settings-Interface.jpg -------------------------------------------------------------------------------- /docs/screens/Yah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/docs/screens/Yah.jpg -------------------------------------------------------------------------------- /lib/Commands/DashboardTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Commands/DashboardTemplate.php -------------------------------------------------------------------------------- /lib/Commands/LaravelDashInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Commands/LaravelDashInstall.php -------------------------------------------------------------------------------- /lib/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Configuration.php -------------------------------------------------------------------------------- /lib/Controllers/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/CheckoutController.php -------------------------------------------------------------------------------- /lib/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/DashboardController.php -------------------------------------------------------------------------------- /lib/Controllers/ManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/ManageController.php -------------------------------------------------------------------------------- /lib/Controllers/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/PostController.php -------------------------------------------------------------------------------- /lib/Controllers/SellController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/SellController.php -------------------------------------------------------------------------------- /lib/Controllers/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/SettingsController.php -------------------------------------------------------------------------------- /lib/Controllers/StoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/StoreController.php -------------------------------------------------------------------------------- /lib/Controllers/SubscribeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Controllers/SubscribeController.php -------------------------------------------------------------------------------- /lib/Events/NotificationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Events/NotificationEvent.php -------------------------------------------------------------------------------- /lib/Helper/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Helper/Assets.php -------------------------------------------------------------------------------- /lib/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Helper/Helper.php -------------------------------------------------------------------------------- /lib/Kit/BrowserKitTesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Kit/BrowserKitTesting.php -------------------------------------------------------------------------------- /lib/Listeners/NotificationListeners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Listeners/NotificationListeners.php -------------------------------------------------------------------------------- /lib/Models/Attachement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Attachement.php -------------------------------------------------------------------------------- /lib/Models/Buy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Buy.php -------------------------------------------------------------------------------- /lib/Models/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Categories.php -------------------------------------------------------------------------------- /lib/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Country.php -------------------------------------------------------------------------------- /lib/Models/Devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Devices.php -------------------------------------------------------------------------------- /lib/Models/Followers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Followers.php -------------------------------------------------------------------------------- /lib/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Post.php -------------------------------------------------------------------------------- /lib/Models/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/Store.php -------------------------------------------------------------------------------- /lib/Models/UserInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Models/UserInformation.php -------------------------------------------------------------------------------- /lib/Notifications/DashboardNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Notifications/DashboardNotification.php -------------------------------------------------------------------------------- /lib/Providers/DashboardServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Providers/DashboardServiceProvider.php -------------------------------------------------------------------------------- /lib/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /lib/Stubs/template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Stubs/template.blade.php -------------------------------------------------------------------------------- /lib/Traits/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Traits/Assets.php -------------------------------------------------------------------------------- /lib/Traits/UserRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/lib/Traits/UserRelation.php -------------------------------------------------------------------------------- /migrations/2020_02_27_080903_create_followers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_02_27_080903_create_followers_table.php -------------------------------------------------------------------------------- /migrations/2020_02_28_143101_create_stores_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_02_28_143101_create_stores_table.php -------------------------------------------------------------------------------- /migrations/2020_07_27_152149_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_27_152149_create_posts_table.php -------------------------------------------------------------------------------- /migrations/2020_07_27_182119_create_attachements_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_27_182119_create_attachements_table.php -------------------------------------------------------------------------------- /migrations/2020_07_28_094627_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_28_094627_create_categories_table.php -------------------------------------------------------------------------------- /migrations/2020_07_28_225824_create_devices_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_28_225824_create_devices_table.php -------------------------------------------------------------------------------- /migrations/2020_07_29_091050_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_29_091050_create_notifications_table.php -------------------------------------------------------------------------------- /migrations/2020_07_29_220625_create_buys_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_29_220625_create_buys_table.php -------------------------------------------------------------------------------- /migrations/2020_07_29_225426_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_29_225426_create_jobs_table.php -------------------------------------------------------------------------------- /migrations/2020_07_6_002209_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_6_002209_create_countries_table.php -------------------------------------------------------------------------------- /migrations/2020_07_6_002218_create_countries_data_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_6_002218_create_countries_data_table.php -------------------------------------------------------------------------------- /migrations/2020_07_7_095148_create_user_informations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/migrations/2020_07_7_095148_create_user_informations_table.php -------------------------------------------------------------------------------- /mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/mix-manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/package.json -------------------------------------------------------------------------------- /published/.gitignore: -------------------------------------------------------------------------------- 1 | /other 2 | /js 3 | /images 4 | /css -------------------------------------------------------------------------------- /published/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/css/app.css -------------------------------------------------------------------------------- /published/images/Mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/images/Mastercard.png -------------------------------------------------------------------------------- /published/images/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/images/Paypal.png -------------------------------------------------------------------------------- /published/images/Post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/images/Post.png -------------------------------------------------------------------------------- /published/images/Sell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/images/Sell.jpg -------------------------------------------------------------------------------- /published/images/Visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/images/Visa.png -------------------------------------------------------------------------------- /published/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/js/app.js -------------------------------------------------------------------------------- /published/other/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/published/other/settings.svg -------------------------------------------------------------------------------- /resources/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /resources/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /resources/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /resources/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /resources/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/component/Chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/js/component/Chart.vue -------------------------------------------------------------------------------- /resources/js/component/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/js/component/Editor.vue -------------------------------------------------------------------------------- /resources/js/component/Manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/js/component/Manage.vue -------------------------------------------------------------------------------- /resources/js/component/Stripe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/js/component/Stripe.vue -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/sass/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/sass/footer.scss -------------------------------------------------------------------------------- /resources/sass/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/sass/index.scss -------------------------------------------------------------------------------- /resources/sass/sell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/sass/sell.scss -------------------------------------------------------------------------------- /resources/sass/store.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/sass/store.scss -------------------------------------------------------------------------------- /resources/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/.DS_Store -------------------------------------------------------------------------------- /resources/views/checkout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/checkout.blade.php -------------------------------------------------------------------------------- /resources/views/components/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/footer.blade.php -------------------------------------------------------------------------------- /resources/views/components/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/components/order.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/order.blade.php -------------------------------------------------------------------------------- /resources/views/components/payment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/payment.blade.php -------------------------------------------------------------------------------- /resources/views/components/referrals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/referrals.blade.php -------------------------------------------------------------------------------- /resources/views/components/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/components/state.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/state.blade.php -------------------------------------------------------------------------------- /resources/views/components/validation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/components/validation.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /resources/views/manage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/manage.blade.php -------------------------------------------------------------------------------- /resources/views/posts/display-posts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/posts/display-posts.blade.php -------------------------------------------------------------------------------- /resources/views/posts/post-show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/posts/post-show.blade.php -------------------------------------------------------------------------------- /resources/views/posts/post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/posts/post.blade.php -------------------------------------------------------------------------------- /resources/views/sell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/sell.blade.php -------------------------------------------------------------------------------- /resources/views/store.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/store.blade.php -------------------------------------------------------------------------------- /resources/views/users/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/users/settings.blade.php -------------------------------------------------------------------------------- /resources/views/users/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/users/users.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/routes/web.php -------------------------------------------------------------------------------- /scripts/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/scripts/prepare.sh -------------------------------------------------------------------------------- /tests/Events/NotificationEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Events/NotificationEventTest.php -------------------------------------------------------------------------------- /tests/Models/CategoriesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Models/CategoriesTest.php -------------------------------------------------------------------------------- /tests/Models/PostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Models/PostTest.php -------------------------------------------------------------------------------- /tests/Models/StoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Models/StoreTest.php -------------------------------------------------------------------------------- /tests/Routes/RouteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Routes/RouteTest.php -------------------------------------------------------------------------------- /tests/Views/DashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Views/DashboardTest.php -------------------------------------------------------------------------------- /tests/Views/PostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Views/PostTest.php -------------------------------------------------------------------------------- /tests/Views/SettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Views/SettingsTest.php -------------------------------------------------------------------------------- /tests/Views/StoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Views/StoreTest.php -------------------------------------------------------------------------------- /tests/Views/UsersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/tests/Views/UsersTest.php -------------------------------------------------------------------------------- /web/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/web/doc.html -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/web/index.html -------------------------------------------------------------------------------- /web/laraveldash-doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/web/laraveldash-doc.css -------------------------------------------------------------------------------- /web/laraveldash-global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/web/laraveldash-global.css -------------------------------------------------------------------------------- /web/laraveldash-landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/web/laraveldash-landing.css -------------------------------------------------------------------------------- /web/laraveldash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/web/laraveldash.js -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspooky/yaldash/HEAD/yarn.lock --------------------------------------------------------------------------------