├── .nvmrc
├── database
├── .gitignore
├── seeders
│ ├── DatabaseSeeder.php
│ ├── PermissionTableSeeder.php
│ └── ConnectRelationshipsSeeder.php
├── migrations
│ ├── 2014_10_00_000001_add_group_column_on_settings_table.php
│ ├── 2022_09_30_181227_create_categories_table.php
│ ├── 2025_01_23_093056_add_event_column_to_activity_log_table.php
│ ├── 2025_01_23_093057_add_batch_uuid_column_to_activity_log_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2022_09_30_181156_create_posts_table.php
│ ├── 2014_10_00_000000_create_settings_table.php
│ ├── 2023_10_02_010617_create_category_post_table.php
│ ├── 0001_01_01_000001_create_cache_table.php
│ ├── 2019_12_14_000001_create_personal_access_tokens_table.php
│ ├── 2022_12_06_061947_create_impersonations_table.php
│ ├── 2025_01_23_093055_create_activity_log_table.php
│ ├── 2022_11_28_073632_create_socialite_providers_table.php
│ ├── 2023_10_02_175025_create_media_table.php
│ ├── 2016_01_15_105324_create_roles_table.php
│ ├── 2016_01_26_115212_create_permissions_table.php
│ ├── 2016_01_15_114412_create_role_user_table.php
│ ├── 2016_01_26_115523_create_permission_role_table.php
│ └── 2016_02_09_132439_create_permission_user_table.php
└── factories
│ └── UserFactory.php
├── bootstrap
└── cache
│ └── .gitignore
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── public
├── robots.txt
├── favicon.ico
├── favicon.png
├── favicon-16x16.png
├── favicon-32x32.png
├── apple-touch-icon.png
├── images
│ └── placeholder.jpg
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── sw.js
├── site.webmanifest
├── .htaccess
└── serviceworker.js
├── resources
├── img
│ ├── 404.png
│ ├── login.png
│ ├── login.webp
│ ├── plugs.png
│ ├── favicon
│ │ ├── favicon.ico
│ │ ├── favicon.png
│ │ ├── favicon-16x16.png
│ │ ├── favicon-32x32.png
│ │ ├── apple-touch-icon.png
│ │ ├── android-chrome-192x192.png
│ │ ├── android-chrome-512x512.png
│ │ └── site.webmanifest
│ ├── vendor-logos
│ │ ├── vultr-1.webp
│ │ ├── vultr-2.png
│ │ ├── zoho-monocrome-black.png
│ │ └── zoho-monocrome-white.png
│ └── fonts
│ │ ├── Nunito
│ │ ├── static
│ │ │ ├── Nunito-Bold.ttf
│ │ │ ├── Nunito-Black.ttf
│ │ │ ├── Nunito-Italic.ttf
│ │ │ ├── Nunito-Light.ttf
│ │ │ ├── Nunito-Medium.ttf
│ │ │ ├── Nunito-ExtraBold.ttf
│ │ │ ├── Nunito-Regular.ttf
│ │ │ ├── Nunito-SemiBold.ttf
│ │ │ ├── Nunito-BlackItalic.ttf
│ │ │ ├── Nunito-BoldItalic.ttf
│ │ │ ├── Nunito-ExtraLight.ttf
│ │ │ ├── Nunito-LightItalic.ttf
│ │ │ ├── Nunito-MediumItalic.ttf
│ │ │ ├── Nunito-SemiBoldItalic.ttf
│ │ │ ├── Nunito-ExtraBoldItalic.ttf
│ │ │ └── Nunito-ExtraLightItalic.ttf
│ │ ├── Nunito-VariableFont_wght.ttf
│ │ └── Nunito-Italic-VariableFont_wght.ttf
│ │ ├── Leckerli_One
│ │ └── LeckerliOne-Regular.ttf
│ │ └── Quicksand
│ │ ├── static
│ │ ├── Quicksand-Bold.ttf
│ │ ├── Quicksand-Light.ttf
│ │ ├── Quicksand-Medium.ttf
│ │ ├── Quicksand-Regular.ttf
│ │ └── Quicksand-SemiBold.ttf
│ │ └── Quicksand-VariableFont_wght.ttf
├── js
│ ├── lang
│ │ ├── bn.json
│ │ ├── zh-CN.json
│ │ ├── es.json
│ │ └── pt-BR.json
│ ├── views
│ │ ├── auth
│ │ │ ├── Verify.vue
│ │ │ └── passwords
│ │ │ │ └── ConfirmPage.vue
│ │ ├── templates
│ │ │ ├── Bare.vue
│ │ │ └── Blank.vue
│ │ ├── pages
│ │ │ └── user-settings
│ │ │ │ ├── AccountData.vue
│ │ │ │ └── SettingsNavLink.vue
│ │ └── posts
│ │ │ └── PublicIndex.vue
│ ├── services
│ │ ├── ability.js
│ │ └── analytics.js
│ ├── components
│ │ ├── common
│ │ │ ├── LoadingCircle.vue
│ │ │ ├── UmoEditor.vue
│ │ │ ├── AppTable.vue
│ │ │ ├── SuccessNotice.vue
│ │ │ ├── TextEditorComponent.vue
│ │ │ ├── SocialMediaLoginStatusItem.vue
│ │ │ ├── AdminMiniCard.vue
│ │ │ ├── CircleSvg.vue
│ │ │ ├── AppSwitch.vue
│ │ │ ├── PerPage.vue
│ │ │ ├── CKEditorComponent.vue
│ │ │ └── NoRecordsCTA.vue
│ │ ├── admin
│ │ │ ├── EditComp.vue
│ │ │ └── IndexComp.vue
│ │ ├── includes
│ │ │ ├── AdminBreadcrumbContainer.vue
│ │ │ ├── AdminBreadcrumbSep.vue
│ │ │ ├── BreadcrumbOld.vue
│ │ │ ├── AdminBreadcrumb.vue
│ │ │ ├── AppFooter.vue
│ │ │ ├── NavLink.vue
│ │ │ └── AdminNavBarLink.vue
│ │ ├── users
│ │ │ └── UserForm.vue
│ │ ├── form
│ │ │ ├── AppSettingTextInput.vue
│ │ │ ├── AppSettingTextarea.vue
│ │ │ └── AppSettingToggle.vue
│ │ ├── LocaleSwitcher.vue
│ │ ├── roles
│ │ │ └── RolesBadges.vue
│ │ └── plugs
│ │ │ ├── GHButton.vue
│ │ │ ├── VultrReferral.vue
│ │ │ └── PatreonButton.vue
│ ├── store
│ │ ├── index.js
│ │ ├── sidebar.js
│ │ └── lang.js
│ ├── routes
│ │ └── index.js
│ ├── validation
│ │ └── rules.js
│ ├── layouts
│ │ ├── ErrorLayout.vue
│ │ ├── AuthenticatedLayout.vue
│ │ └── GuestLayout.vue
│ ├── plugins
│ │ └── i18n.js
│ └── bootstrap.js
├── pwa
│ ├── sw.js
│ └── serviceworker.js
└── views
│ ├── socialite
│ ├── denied.blade.php
│ └── callback.blade.php
│ ├── home.blade.php
│ └── auth
│ └── verify.blade.php
├── vue.config.js
├── config
├── browser-sessions.php
├── laravel-https.php
├── cors.php
├── users.php
├── personal-data-export.php
├── view.php
├── laravel-page-speed.php
├── sitemap.php
└── hashing.php
├── .prettierrc.json
├── app
├── Models
│ ├── Role.php
│ ├── Setting.php
│ ├── CategoryPost.php
│ ├── Permission.php
│ ├── Category.php
│ └── Impersonation.php
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── PreventRequestsDuringMaintenance.php
│ │ ├── TrustHosts.php
│ │ ├── TrimStrings.php
│ │ ├── Authenticate.php
│ │ ├── ValidateSignature.php
│ │ ├── TrustProxies.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Requests
│ │ ├── Posts
│ │ │ ├── ShowPostRequest.php
│ │ │ ├── DeletePostRequest.php
│ │ │ ├── RestorePostRequest.php
│ │ │ ├── StorePostRequest.php
│ │ │ └── UpdatePostRequest.php
│ │ ├── Users
│ │ │ ├── LeaveImpersonateUserRequest.php
│ │ │ ├── VerifyUserRequest.php
│ │ │ ├── ViewUserRequest.php
│ │ │ ├── DeleteUserRequest.php
│ │ │ ├── RestoreUserRequest.php
│ │ │ ├── ImpersonateUserRequest.php
│ │ │ ├── CreateUserRequest.php
│ │ │ └── UpdateUserRequest.php
│ │ ├── Roles
│ │ │ ├── GetUserRolesRequest.php
│ │ │ ├── CreateRoleRequest.php
│ │ │ └── UpdateRoleRequest.php
│ │ ├── StoreRoleRequest.php
│ │ ├── Categories
│ │ │ ├── StoreCategoryRequest.php
│ │ │ ├── ShowCategoryRequest.php
│ │ │ ├── DeleteCategoryRequest.php
│ │ │ ├── RestoreCategoryRequest.php
│ │ │ └── UpdateCategoryRequest.php
│ │ ├── Permissions
│ │ │ ├── GetPermissionsRequest.php
│ │ │ ├── CreatePermissionRequest.php
│ │ │ └── UpdatePermissionRequest.php
│ │ ├── UpdateProfileRequest.php
│ │ ├── Admin
│ │ │ ├── AdminDashboardRequest.php
│ │ │ ├── ShowServerInfoRequest.php
│ │ │ ├── ShowAppSettingsRequest.php
│ │ │ └── UpdateAppSettingsRequest.php
│ │ ├── Auth
│ │ │ └── RegisterRequest.php
│ │ └── StoreUserRequest.php
│ ├── Controllers
│ │ ├── Api
│ │ │ ├── BrowserSessionController.php
│ │ │ ├── ActivityLogController.php
│ │ │ └── ProfileController.php
│ │ ├── HomeController.php
│ │ ├── Auth
│ │ │ ├── PasswordController.php
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ └── ConfirmPasswordController.php
│ │ ├── Admin
│ │ │ ├── ServerInfoController.php
│ │ │ ├── DashboardController.php
│ │ │ └── AppSettingsController.php
│ │ └── Controller.php
│ └── Resources
│ │ ├── Categories
│ │ ├── CategoryResource.php
│ │ └── GategoriesCollection.php
│ │ ├── Roles
│ │ ├── RoleResource.php
│ │ └── RolesCollection.php
│ │ ├── Permissions
│ │ ├── PermissionResource.php
│ │ └── PermissionsCollection.php
│ │ ├── Posts
│ │ ├── PostsCollection.php
│ │ └── PostResource.php
│ │ ├── Users
│ │ ├── UsersCollection.php
│ │ └── UserResource.php
│ │ └── ActivityLogs
│ │ ├── ActivityLogsCollection.php
│ │ └── ActivityLogResource.php
├── Exceptions
│ └── SocialProviderDeniedException.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── ViewComposerServiceProvider.php
│ ├── AuthServiceProvider.php
│ └── RouteServiceProvider.php
├── Jobs
│ └── PersonalDataExportJob.php
├── View
│ └── Composers
│ │ ├── GaComposer.php
│ │ └── GaEnabledComposer.php
├── Services
│ └── AppleToken.php
├── Notifications
│ ├── VerifyEmailNotification.php
│ └── ResetPasswordNotification.php
└── Console
│ └── Kernel.php
├── prettier.config.js
├── postcss.config.js
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── .eslintrc.json
├── .gitattributes
├── SECURITY.md
├── lang
├── vendor
│ └── personal-data-export
│ │ └── en
│ │ └── notifications.php
└── en
│ ├── pagination.php
│ ├── auth.php
│ └── passwords.php
├── .prettierignore
├── routes
├── channels.php
├── console.php
└── web.php
├── .editorconfig
├── .gitignore
├── eslint.config.js
├── LICENSE
├── phpunit.xml
├── tailwind.config.js
├── .eslintrc.js
└── .scripts
└── deploy.sh
/.nvmrc:
--------------------------------------------------------------------------------
1 | 24
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
2 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/favicon.png
--------------------------------------------------------------------------------
/resources/img/404.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/404.png
--------------------------------------------------------------------------------
/public/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/favicon-16x16.png
--------------------------------------------------------------------------------
/public/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/favicon-32x32.png
--------------------------------------------------------------------------------
/resources/img/login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/login.png
--------------------------------------------------------------------------------
/resources/img/login.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/login.webp
--------------------------------------------------------------------------------
/resources/img/plugs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/plugs.png
--------------------------------------------------------------------------------
/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/apple-touch-icon.png
--------------------------------------------------------------------------------
/public/images/placeholder.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/images/placeholder.jpg
--------------------------------------------------------------------------------
/public/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/android-chrome-192x192.png
--------------------------------------------------------------------------------
/public/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/public/android-chrome-512x512.png
--------------------------------------------------------------------------------
/resources/img/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/favicon.ico
--------------------------------------------------------------------------------
/resources/img/favicon/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/favicon.png
--------------------------------------------------------------------------------
/resources/img/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/resources/img/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/resources/img/vendor-logos/vultr-1.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/vendor-logos/vultr-1.webp
--------------------------------------------------------------------------------
/resources/img/vendor-logos/vultr-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/vendor-logos/vultr-2.png
--------------------------------------------------------------------------------
/resources/img/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/resources/js/lang/bn.json:
--------------------------------------------------------------------------------
1 | {
2 | "welcome_starter_title": "Laravel Vue 3 Starter-এ স্বাগতম",
3 | "ok": "Ok",
4 | "cancel": "Cancel"
5 | }
6 |
--------------------------------------------------------------------------------
/resources/img/favicon/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/android-chrome-192x192.png
--------------------------------------------------------------------------------
/resources/img/favicon/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/favicon/android-chrome-512x512.png
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-Bold.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-Black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-Black.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-Italic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-Light.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-Medium.ttf
--------------------------------------------------------------------------------
/resources/img/vendor-logos/zoho-monocrome-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/vendor-logos/zoho-monocrome-black.png
--------------------------------------------------------------------------------
/resources/img/vendor-logos/zoho-monocrome-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/vendor-logos/zoho-monocrome-white.png
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-ExtraBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-ExtraBold.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-Regular.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-SemiBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-SemiBold.ttf
--------------------------------------------------------------------------------
/vue.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | // Delete the prefetch plugin
3 | chainWebpack: (config) => {
4 | config.plugins.delete('prefetch');
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/resources/img/fonts/Leckerli_One/LeckerliOne-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Leckerli_One/LeckerliOne-Regular.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/Nunito-VariableFont_wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/Nunito-VariableFont_wght.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-BlackItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-BlackItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-BoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-BoldItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-ExtraLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-ExtraLight.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-LightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-LightItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Quicksand/static/Quicksand-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Quicksand/static/Quicksand-Bold.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Quicksand/static/Quicksand-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Quicksand/static/Quicksand-Light.ttf
--------------------------------------------------------------------------------
/config/browser-sessions.php:
--------------------------------------------------------------------------------
1 | true,
5 | 'browser_session_guard' => env('BROWSER_SESSION_GUARD', 'web'),
6 | ];
7 |
--------------------------------------------------------------------------------
/public/sw.js:
--------------------------------------------------------------------------------
1 | import { cleanupOutdatedCaches, precacheAndRoute } from 'workbox-precaching';
2 |
3 | cleanupOutdatedCaches();
4 |
5 | precacheAndRoute(self.__WB_MANIFEST);
6 |
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-MediumItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-MediumItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-SemiBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-SemiBoldItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Quicksand/static/Quicksand-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Quicksand/static/Quicksand-Medium.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Quicksand/static/Quicksand-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Quicksand/static/Quicksand-Regular.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Quicksand/static/Quicksand-SemiBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Quicksand/static/Quicksand-SemiBold.ttf
--------------------------------------------------------------------------------
/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "trailingComma": "all",
3 | "tabWidth": 2,
4 | "semi": true,
5 | "singleQuote": true,
6 | "printWidth": 120,
7 | "bracketSpacing": true
8 | }
9 |
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-ExtraBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-ExtraBoldItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/static/Nunito-ExtraLightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/static/Nunito-ExtraLightItalic.ttf
--------------------------------------------------------------------------------
/resources/img/fonts/Quicksand/Quicksand-VariableFont_wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Quicksand/Quicksand-VariableFont_wght.ttf
--------------------------------------------------------------------------------
/resources/js/views/auth/Verify.vue:
--------------------------------------------------------------------------------
1 |
2 | Verify
3 |
4 |
5 |
10 |
--------------------------------------------------------------------------------
/resources/pwa/sw.js:
--------------------------------------------------------------------------------
1 | import { cleanupOutdatedCaches, precacheAndRoute } from 'workbox-precaching';
2 |
3 | cleanupOutdatedCaches();
4 |
5 | precacheAndRoute(self.__WB_MANIFEST);
6 |
--------------------------------------------------------------------------------
/resources/img/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeremykenedy/laravel-spa/HEAD/resources/img/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf
--------------------------------------------------------------------------------
/resources/js/views/templates/Bare.vue:
--------------------------------------------------------------------------------
1 |
2 |
5 | {{ data }}
6 |
7 |