├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ └── ProfileController.php │ ├── Middleware │ │ └── HandleInertiaRequests.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Models │ └── User.php └── Providers │ └── AppServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── components.json ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── inertia.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ └── 0001_01_01_000002_create_jobs_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── avatars │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ └── shadcn.jpg ├── examples │ ├── mail-dark.png │ └── mail-light.png ├── favicon.ico ├── favicon.png ├── favicon.svg ├── images │ ├── favicon.png │ ├── favicon.svg │ └── shadcn-admin.png ├── index.php ├── placeholder.svg └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.tsx │ ├── assets │ │ └── vite.svg │ ├── bootstrap.ts │ ├── components │ │ ├── ApplicationLogo.tsx │ │ ├── Checkbox.tsx │ │ ├── DangerButton.tsx │ │ ├── Dropdown.tsx │ │ ├── InputError.tsx │ │ ├── InputLabel.tsx │ │ ├── Modal.tsx │ │ ├── NavLink.tsx │ │ ├── PrimaryButton.tsx │ │ ├── ResponsiveNavLink.tsx │ │ ├── SecondaryButton.tsx │ │ ├── TextInput.tsx │ │ ├── command-menu.tsx │ │ ├── confirm-dialog.tsx │ │ ├── errors │ │ │ ├── forbidden.tsx │ │ │ └── not-found.tsx │ │ ├── layout │ │ │ ├── app-sidebar.tsx │ │ │ ├── data │ │ │ │ └── sidebar-data.ts │ │ │ ├── header.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ ├── nav-group.tsx │ │ │ ├── nav-user.tsx │ │ │ ├── team-switcher.tsx │ │ │ ├── top-nav.tsx │ │ │ └── types.ts │ │ ├── login-form.tsx │ │ ├── long-text.tsx │ │ ├── nav-user.tsx │ │ ├── password-input.tsx │ │ ├── pin-input.tsx │ │ ├── profile-dropdown.tsx │ │ ├── search-form.tsx │ │ ├── search.tsx │ │ ├── select-dropdown.tsx │ │ ├── skip-to-main.tsx │ │ ├── team-switcher.tsx │ │ ├── theme-switch.tsx │ │ ├── theme │ │ │ └── theme-toggle.tsx │ │ ├── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── minimal-tiptap │ │ │ │ ├── components │ │ │ │ │ ├── bubble-menu │ │ │ │ │ │ └── link-bubble-menu.tsx │ │ │ │ │ ├── image │ │ │ │ │ │ ├── image-edit-block.tsx │ │ │ │ │ │ └── image-edit-dialog.tsx │ │ │ │ │ ├── link │ │ │ │ │ │ ├── link-edit-block.tsx │ │ │ │ │ │ ├── link-edit-popover.tsx │ │ │ │ │ │ └── link-popover-block.tsx │ │ │ │ │ ├── measured-container.tsx │ │ │ │ │ ├── section │ │ │ │ │ │ ├── five.tsx │ │ │ │ │ │ ├── four.tsx │ │ │ │ │ │ ├── one.tsx │ │ │ │ │ │ ├── three.tsx │ │ │ │ │ │ └── two.tsx │ │ │ │ │ ├── shortcut-key.tsx │ │ │ │ │ ├── spinner.tsx │ │ │ │ │ ├── toolbar-button.tsx │ │ │ │ │ └── toolbar-section.tsx │ │ │ │ ├── extensions │ │ │ │ │ ├── code-block-lowlight │ │ │ │ │ │ ├── code-block-lowlight.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── color │ │ │ │ │ │ ├── color.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── file-handler │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── horizontal-rule │ │ │ │ │ │ ├── horizontal-rule.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── image │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── image-actions.tsx │ │ │ │ │ │ │ ├── image-overlay.tsx │ │ │ │ │ │ │ ├── image-view-block.tsx │ │ │ │ │ │ │ └── resize-handle.tsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── use-drag-resize.ts │ │ │ │ │ │ │ └── use-image-actions.ts │ │ │ │ │ │ ├── image.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reset-marks-on-enter │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── reset-marks-on-enter.ts │ │ │ │ │ └── unset-all-marks │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── unset-all-marks.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── use-container-size.ts │ │ │ │ │ ├── use-minimal-tiptap.ts │ │ │ │ │ ├── use-theme.ts │ │ │ │ │ └── use-throttle.ts │ │ │ │ ├── index.ts │ │ │ │ ├── minimal-tiptap.tsx │ │ │ │ ├── styles │ │ │ │ │ ├── index.css │ │ │ │ │ └── partials │ │ │ │ │ │ ├── code.css │ │ │ │ │ │ ├── lists.css │ │ │ │ │ │ ├── placeholder.css │ │ │ │ │ │ ├── typography.css │ │ │ │ │ │ └── zoom.css │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── tab.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ │ └── version-switcher.tsx │ ├── config │ │ ├── env.ts │ │ ├── index.ts │ │ └── payment.ts │ ├── context │ │ ├── search-context.tsx │ │ └── theme-context.tsx │ ├── hooks │ │ ├── use-dialog-state.tsx │ │ ├── use-mobile.tsx │ │ └── use-toast.ts │ ├── layouts │ │ ├── AuthenticatedLayout.tsx │ │ ├── GuestLayout.tsx │ │ ├── app-layout │ │ │ └── index.tsx │ │ ├── authenticated-layout │ │ │ └── index.tsx │ │ ├── guest-layout │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── page-layout │ │ │ ├── header.tsx │ │ │ └── index.tsx │ │ └── settings-layout │ │ │ └── index.tsx │ ├── lib │ │ ├── axios.ts │ │ ├── cookie.ts │ │ ├── date-utils.ts │ │ ├── errors.ts │ │ ├── formatters.ts │ │ ├── nuqs.ts │ │ ├── react-query.ts │ │ ├── request.ts │ │ ├── storage.ts │ │ ├── upload.ts │ │ ├── urls.ts │ │ ├── utils.ts │ │ └── zod.ts │ ├── pages │ │ ├── Dashboard.tsx │ │ ├── Landing.tsx │ │ ├── LoginPage.tsx │ │ ├── Welcome.tsx │ │ ├── apps │ │ │ ├── data │ │ │ │ └── apps.tsx │ │ │ └── index.tsx │ │ ├── auth │ │ │ ├── ConfirmPassword.tsx │ │ │ ├── ForgotPassword.tsx │ │ │ ├── Login.tsx │ │ │ ├── Register.tsx │ │ │ ├── ResetPassword.tsx │ │ │ ├── VerifyEmail.tsx │ │ │ ├── auth-layout.tsx │ │ │ ├── components │ │ │ │ ├── index.tsx │ │ │ │ ├── social-buttons.tsx │ │ │ │ └── term-privacy-link.tsx │ │ │ ├── forgot-password │ │ │ │ ├── components │ │ │ │ │ └── forgot-password-form.tsx │ │ │ │ └── index.tsx │ │ │ ├── otp │ │ │ │ ├── components │ │ │ │ │ └── otp-form.tsx │ │ │ │ └── index.tsx │ │ │ ├── sign-in │ │ │ │ ├── components │ │ │ │ │ └── user-auth-form.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── sign-in-2.tsx │ │ │ └── sign-up │ │ │ │ ├── components │ │ │ │ └── sign-up-form.tsx │ │ │ │ └── index.tsx │ │ ├── blog │ │ │ ├── categories.tsx │ │ │ ├── create-post.tsx │ │ │ ├── post.tsx │ │ │ ├── posts.tsx │ │ │ └── tags.tsx │ │ ├── charts │ │ │ ├── examples │ │ │ │ ├── ActiveEnergy.tsx │ │ │ │ ├── AverageSteps.tsx │ │ │ │ ├── Move.tsx │ │ │ │ ├── MoveRadial.tsx │ │ │ │ ├── Progress.tsx │ │ │ │ ├── Resting.tsx │ │ │ │ ├── TimeInBed.tsx │ │ │ │ ├── WalkingDistance.tsx │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── chats │ │ │ ├── data │ │ │ │ └── convo.json │ │ │ └── index.tsx │ │ ├── coming-soon │ │ │ └── index.tsx │ │ ├── dashboard │ │ │ ├── analytics │ │ │ │ ├── BarChartExample.tsx │ │ │ │ └── LineChartExample.tsx │ │ │ ├── index.tsx │ │ │ ├── overview.tsx │ │ │ ├── recent-sales.tsx │ │ │ └── reports │ │ │ │ ├── AreaChartDemo.tsx │ │ │ │ ├── BarChartActive.tsx │ │ │ │ ├── BarChartHorizontal.tsx │ │ │ │ ├── BarChartMultiple.tsx │ │ │ │ ├── BarChartSingle.tsx │ │ │ │ ├── LineChartMultiple.tsx │ │ │ │ ├── PieChartDemo.tsx │ │ │ │ ├── PieChartDonut.tsx │ │ │ │ ├── PieChartInteractive.tsx │ │ │ │ ├── RadialChartLabel.tsx │ │ │ │ ├── RadialChartShape.tsx │ │ │ │ └── RadialChartText.tsx │ │ ├── ecommerce │ │ │ ├── orders.tsx │ │ │ ├── product.tsx │ │ │ └── products.tsx │ │ ├── errors │ │ │ ├── components │ │ │ │ └── go-back.tsx │ │ │ ├── forbidden.tsx │ │ │ ├── general-error.tsx │ │ │ ├── maintenance-error.tsx │ │ │ ├── not-found-error.tsx │ │ │ └── unauthorized-error.tsx │ │ ├── mail │ │ │ ├── components │ │ │ │ ├── account-switcher.tsx │ │ │ │ ├── mail-display.tsx │ │ │ │ ├── mail-list.tsx │ │ │ │ ├── mail.tsx │ │ │ │ └── nav.tsx │ │ │ ├── data.tsx │ │ │ ├── index.tsx │ │ │ └── use-mail.ts │ │ ├── playground │ │ │ └── dashboard-03.tsx │ │ ├── pricing │ │ │ ├── components │ │ │ │ ├── Pricing.tsx │ │ │ │ ├── PricingCard.tsx │ │ │ │ └── PricingHeader.tsx │ │ │ └── index.tsx │ │ ├── profile │ │ │ ├── Edit.tsx │ │ │ └── Partials │ │ │ │ ├── DeleteUserForm.tsx │ │ │ │ ├── UpdatePasswordForm.tsx │ │ │ │ └── UpdateProfileInformationForm.tsx │ │ ├── settings │ │ │ ├── account │ │ │ │ ├── account-form.tsx │ │ │ │ └── index.tsx │ │ │ ├── appearance │ │ │ │ ├── appearance-form.tsx │ │ │ │ └── index.tsx │ │ │ ├── components │ │ │ │ ├── content-section.tsx │ │ │ │ └── sidebar-nav.tsx │ │ │ ├── display │ │ │ │ ├── display-form.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── notifications │ │ │ │ ├── index.tsx │ │ │ │ └── notifications-form.tsx │ │ │ └── profile │ │ │ │ ├── index.tsx │ │ │ │ └── profile-form.tsx │ │ ├── tasks │ │ │ ├── components │ │ │ │ ├── columns.tsx │ │ │ │ ├── data-table-column-header.tsx │ │ │ │ ├── data-table-faceted-filter.tsx │ │ │ │ ├── data-table-pagination.tsx │ │ │ │ ├── data-table-row-actions.tsx │ │ │ │ ├── data-table-toolbar.tsx │ │ │ │ ├── data-table-view-options.tsx │ │ │ │ ├── data-table.tsx │ │ │ │ ├── tasks-dialogs.tsx │ │ │ │ ├── tasks-import-dialog.tsx │ │ │ │ ├── tasks-mutate-drawer.tsx │ │ │ │ └── tasks-primary-buttons.tsx │ │ │ ├── context │ │ │ │ └── tasks-context.tsx │ │ │ ├── data │ │ │ │ ├── data.tsx │ │ │ │ ├── schema.ts │ │ │ │ └── tasks.ts │ │ │ └── index.tsx │ │ └── users │ │ │ ├── components │ │ │ ├── data-table-column-header.tsx │ │ │ ├── data-table-faceted-filter.tsx │ │ │ ├── data-table-pagination.tsx │ │ │ ├── data-table-row-actions.tsx │ │ │ ├── data-table-toolbar.tsx │ │ │ ├── data-table-view-options.tsx │ │ │ ├── users-action-dialog.tsx │ │ │ ├── users-columns.tsx │ │ │ ├── users-delete-dialog.tsx │ │ │ ├── users-dialogs.tsx │ │ │ ├── users-invite-dialog.tsx │ │ │ ├── users-primary-buttons.tsx │ │ │ └── users-table.tsx │ │ │ ├── context │ │ │ └── users-context.tsx │ │ │ ├── data │ │ │ ├── data.ts │ │ │ ├── schema.ts │ │ │ └── users.ts │ │ │ └── index.tsx │ ├── providers.tsx │ └── types │ │ ├── blog.ts │ │ ├── global.d.ts │ │ ├── index.d.ts │ │ └── vite-env.d.ts └── views │ └── app.blade.php ├── routes ├── auth.php ├── console.php ├── dashboard.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── tsconfig.json ├── vite.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/README.md -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/components.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/inertia.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/avatars/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/avatars/01.png -------------------------------------------------------------------------------- /public/avatars/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/avatars/02.png -------------------------------------------------------------------------------- /public/avatars/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/avatars/03.png -------------------------------------------------------------------------------- /public/avatars/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/avatars/04.png -------------------------------------------------------------------------------- /public/avatars/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/avatars/05.png -------------------------------------------------------------------------------- /public/avatars/shadcn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/avatars/shadcn.jpg -------------------------------------------------------------------------------- /public/examples/mail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/examples/mail-dark.png -------------------------------------------------------------------------------- /public/examples/mail-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/examples/mail-light.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/images/favicon.svg -------------------------------------------------------------------------------- /public/images/shadcn-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/images/shadcn-admin.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/index.php -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/app.tsx -------------------------------------------------------------------------------- /resources/js/assets/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/assets/vite.svg -------------------------------------------------------------------------------- /resources/js/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/bootstrap.ts -------------------------------------------------------------------------------- /resources/js/components/ApplicationLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ApplicationLogo.tsx -------------------------------------------------------------------------------- /resources/js/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/Checkbox.tsx -------------------------------------------------------------------------------- /resources/js/components/DangerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/DangerButton.tsx -------------------------------------------------------------------------------- /resources/js/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/Dropdown.tsx -------------------------------------------------------------------------------- /resources/js/components/InputError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/InputError.tsx -------------------------------------------------------------------------------- /resources/js/components/InputLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/InputLabel.tsx -------------------------------------------------------------------------------- /resources/js/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/Modal.tsx -------------------------------------------------------------------------------- /resources/js/components/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/NavLink.tsx -------------------------------------------------------------------------------- /resources/js/components/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/PrimaryButton.tsx -------------------------------------------------------------------------------- /resources/js/components/ResponsiveNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ResponsiveNavLink.tsx -------------------------------------------------------------------------------- /resources/js/components/SecondaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/SecondaryButton.tsx -------------------------------------------------------------------------------- /resources/js/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/TextInput.tsx -------------------------------------------------------------------------------- /resources/js/components/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/command-menu.tsx -------------------------------------------------------------------------------- /resources/js/components/confirm-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/confirm-dialog.tsx -------------------------------------------------------------------------------- /resources/js/components/errors/forbidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/errors/forbidden.tsx -------------------------------------------------------------------------------- /resources/js/components/errors/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/errors/not-found.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/app-sidebar.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/data/sidebar-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/data/sidebar-data.ts -------------------------------------------------------------------------------- /resources/js/components/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/header.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/index.ts -------------------------------------------------------------------------------- /resources/js/components/layout/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/main.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/nav-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/nav-group.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/nav-user.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/team-switcher.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/top-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/top-nav.tsx -------------------------------------------------------------------------------- /resources/js/components/layout/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/layout/types.ts -------------------------------------------------------------------------------- /resources/js/components/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/login-form.tsx -------------------------------------------------------------------------------- /resources/js/components/long-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/long-text.tsx -------------------------------------------------------------------------------- /resources/js/components/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/nav-user.tsx -------------------------------------------------------------------------------- /resources/js/components/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/password-input.tsx -------------------------------------------------------------------------------- /resources/js/components/pin-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/pin-input.tsx -------------------------------------------------------------------------------- /resources/js/components/profile-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/profile-dropdown.tsx -------------------------------------------------------------------------------- /resources/js/components/search-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/search-form.tsx -------------------------------------------------------------------------------- /resources/js/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/search.tsx -------------------------------------------------------------------------------- /resources/js/components/select-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/select-dropdown.tsx -------------------------------------------------------------------------------- /resources/js/components/skip-to-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/skip-to-main.tsx -------------------------------------------------------------------------------- /resources/js/components/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/team-switcher.tsx -------------------------------------------------------------------------------- /resources/js/components/theme-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/theme-switch.tsx -------------------------------------------------------------------------------- /resources/js/components/theme/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/theme/theme-toggle.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/accordion.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/alert.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/avatar.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/badge.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/button.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/calendar.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/card.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/carousel.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/chart.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/command.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/dialog.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/drawer.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/form.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/input.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/label.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/bubble-menu/link-bubble-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/bubble-menu/link-bubble-menu.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/image/image-edit-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/image/image-edit-block.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/image/image-edit-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/image/image-edit-dialog.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/link/link-edit-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/link/link-edit-block.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/link/link-edit-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/link/link-edit-popover.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/link/link-popover-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/link/link-popover-block.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/measured-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/measured-container.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/section/five.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/section/five.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/section/four.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/section/four.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/section/one.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/section/one.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/section/three.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/section/three.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/section/two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/section/two.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/shortcut-key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/shortcut-key.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/spinner.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/toolbar-button.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/components/toolbar-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/components/toolbar-section.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/code-block-lowlight/code-block-lowlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/code-block-lowlight/code-block-lowlight.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/code-block-lowlight/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./code-block-lowlight" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/color/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/color/color.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/color/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./color" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/file-handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/file-handler/index.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/horizontal-rule/horizontal-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/horizontal-rule/horizontal-rule.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/horizontal-rule/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./horizontal-rule" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/components/image-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/components/image-actions.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/components/image-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/components/image-overlay.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/components/image-view-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/components/image-view-block.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/components/resize-handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/components/resize-handle.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/hooks/use-drag-resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/hooks/use-drag-resize.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/hooks/use-image-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/hooks/use-image-actions.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/image/image.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/image/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./image" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/index.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/reset-marks-on-enter/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./reset-marks-on-enter" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/reset-marks-on-enter/reset-marks-on-enter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/reset-marks-on-enter/reset-marks-on-enter.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/unset-all-marks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./unset-all-marks" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/extensions/unset-all-marks/unset-all-marks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/extensions/unset-all-marks/unset-all-marks.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/hooks/use-container-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/hooks/use-container-size.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/hooks/use-minimal-tiptap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/hooks/use-minimal-tiptap.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/hooks/use-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/hooks/use-theme.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/hooks/use-throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/hooks/use-throttle.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./minimal-tiptap" 2 | -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/minimal-tiptap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/minimal-tiptap.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/styles/index.css -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/styles/partials/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/styles/partials/code.css -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/styles/partials/lists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/styles/partials/lists.css -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/styles/partials/placeholder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/styles/partials/placeholder.css -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/styles/partials/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/styles/partials/typography.css -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/styles/partials/zoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/styles/partials/zoom.css -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/types.ts -------------------------------------------------------------------------------- /resources/js/components/ui/minimal-tiptap/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/minimal-tiptap/utils.ts -------------------------------------------------------------------------------- /resources/js/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/pagination.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/popover.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/progress.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/resizable.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/select.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/separator.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/sheet.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/slider.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/sonner.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/switch.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/tab.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/table.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/tabs.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/textarea.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/toast.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/toaster.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/toggle.tsx -------------------------------------------------------------------------------- /resources/js/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /resources/js/components/version-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/components/version-switcher.tsx -------------------------------------------------------------------------------- /resources/js/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/config/env.ts -------------------------------------------------------------------------------- /resources/js/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/config/index.ts -------------------------------------------------------------------------------- /resources/js/config/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/config/payment.ts -------------------------------------------------------------------------------- /resources/js/context/search-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/context/search-context.tsx -------------------------------------------------------------------------------- /resources/js/context/theme-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/context/theme-context.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-dialog-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/hooks/use-dialog-state.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/hooks/use-toast.ts -------------------------------------------------------------------------------- /resources/js/layouts/AuthenticatedLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/AuthenticatedLayout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/GuestLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/GuestLayout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/app-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/app-layout/index.tsx -------------------------------------------------------------------------------- /resources/js/layouts/authenticated-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/authenticated-layout/index.tsx -------------------------------------------------------------------------------- /resources/js/layouts/guest-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/guest-layout/index.tsx -------------------------------------------------------------------------------- /resources/js/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/index.ts -------------------------------------------------------------------------------- /resources/js/layouts/page-layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/page-layout/header.tsx -------------------------------------------------------------------------------- /resources/js/layouts/page-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/page-layout/index.tsx -------------------------------------------------------------------------------- /resources/js/layouts/settings-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/layouts/settings-layout/index.tsx -------------------------------------------------------------------------------- /resources/js/lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/axios.ts -------------------------------------------------------------------------------- /resources/js/lib/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/cookie.ts -------------------------------------------------------------------------------- /resources/js/lib/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/date-utils.ts -------------------------------------------------------------------------------- /resources/js/lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/errors.ts -------------------------------------------------------------------------------- /resources/js/lib/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/formatters.ts -------------------------------------------------------------------------------- /resources/js/lib/nuqs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/nuqs.ts -------------------------------------------------------------------------------- /resources/js/lib/react-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/react-query.ts -------------------------------------------------------------------------------- /resources/js/lib/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/request.ts -------------------------------------------------------------------------------- /resources/js/lib/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/storage.ts -------------------------------------------------------------------------------- /resources/js/lib/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/upload.ts -------------------------------------------------------------------------------- /resources/js/lib/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/urls.ts -------------------------------------------------------------------------------- /resources/js/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/utils.ts -------------------------------------------------------------------------------- /resources/js/lib/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/lib/zod.ts -------------------------------------------------------------------------------- /resources/js/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/Dashboard.tsx -------------------------------------------------------------------------------- /resources/js/pages/Landing.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/pages/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/LoginPage.tsx -------------------------------------------------------------------------------- /resources/js/pages/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/Welcome.tsx -------------------------------------------------------------------------------- /resources/js/pages/apps/data/apps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/apps/data/apps.tsx -------------------------------------------------------------------------------- /resources/js/pages/apps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/apps/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/ConfirmPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/ConfirmPassword.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/ForgotPassword.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/Login.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/Register.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/ResetPassword.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/VerifyEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/VerifyEmail.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/auth-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/auth-layout.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/components/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/components/social-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/components/social-buttons.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/components/term-privacy-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/components/term-privacy-link.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/forgot-password/components/forgot-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/forgot-password/components/forgot-password-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/forgot-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/forgot-password/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/otp/components/otp-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/otp/components/otp-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/otp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/otp/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/sign-in/components/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/sign-in/components/user-auth-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/sign-in/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/sign-in/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/sign-in/sign-in-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/sign-in/sign-in-2.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/sign-up/components/sign-up-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/sign-up/components/sign-up-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/sign-up/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/auth/sign-up/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/blog/categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/blog/categories.tsx -------------------------------------------------------------------------------- /resources/js/pages/blog/create-post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/blog/create-post.tsx -------------------------------------------------------------------------------- /resources/js/pages/blog/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/blog/post.tsx -------------------------------------------------------------------------------- /resources/js/pages/blog/posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/blog/posts.tsx -------------------------------------------------------------------------------- /resources/js/pages/blog/tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/blog/tags.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/ActiveEnergy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/ActiveEnergy.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/AverageSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/AverageSteps.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/Move.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/Move.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/MoveRadial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/MoveRadial.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/Progress.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/Resting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/Resting.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/TimeInBed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/TimeInBed.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/WalkingDistance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/WalkingDistance.tsx -------------------------------------------------------------------------------- /resources/js/pages/charts/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/examples/index.ts -------------------------------------------------------------------------------- /resources/js/pages/charts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/charts/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/chats/data/convo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/chats/data/convo.json -------------------------------------------------------------------------------- /resources/js/pages/chats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/chats/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/coming-soon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/coming-soon/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/analytics/BarChartExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/analytics/BarChartExample.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/analytics/LineChartExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/analytics/LineChartExample.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/overview.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/recent-sales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/recent-sales.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/AreaChartDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/AreaChartDemo.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/BarChartActive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/BarChartActive.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/BarChartHorizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/BarChartHorizontal.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/BarChartMultiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/BarChartMultiple.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/BarChartSingle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/BarChartSingle.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/LineChartMultiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/LineChartMultiple.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/PieChartDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/PieChartDemo.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/PieChartDonut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/PieChartDonut.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/PieChartInteractive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/PieChartInteractive.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/RadialChartLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/RadialChartLabel.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/RadialChartShape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/RadialChartShape.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard/reports/RadialChartText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/dashboard/reports/RadialChartText.tsx -------------------------------------------------------------------------------- /resources/js/pages/ecommerce/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/ecommerce/orders.tsx -------------------------------------------------------------------------------- /resources/js/pages/ecommerce/product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/ecommerce/product.tsx -------------------------------------------------------------------------------- /resources/js/pages/ecommerce/products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/ecommerce/products.tsx -------------------------------------------------------------------------------- /resources/js/pages/errors/components/go-back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/errors/components/go-back.tsx -------------------------------------------------------------------------------- /resources/js/pages/errors/forbidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/errors/forbidden.tsx -------------------------------------------------------------------------------- /resources/js/pages/errors/general-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/errors/general-error.tsx -------------------------------------------------------------------------------- /resources/js/pages/errors/maintenance-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/errors/maintenance-error.tsx -------------------------------------------------------------------------------- /resources/js/pages/errors/not-found-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/errors/not-found-error.tsx -------------------------------------------------------------------------------- /resources/js/pages/errors/unauthorized-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/errors/unauthorized-error.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/components/account-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/components/account-switcher.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/components/mail-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/components/mail-display.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/components/mail-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/components/mail-list.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/components/mail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/components/mail.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/components/nav.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/data.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/mail/use-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/mail/use-mail.ts -------------------------------------------------------------------------------- /resources/js/pages/playground/dashboard-03.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/playground/dashboard-03.tsx -------------------------------------------------------------------------------- /resources/js/pages/pricing/components/Pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/pricing/components/Pricing.tsx -------------------------------------------------------------------------------- /resources/js/pages/pricing/components/PricingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/pricing/components/PricingCard.tsx -------------------------------------------------------------------------------- /resources/js/pages/pricing/components/PricingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/pricing/components/PricingHeader.tsx -------------------------------------------------------------------------------- /resources/js/pages/pricing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/pricing/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/profile/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/profile/Edit.tsx -------------------------------------------------------------------------------- /resources/js/pages/profile/Partials/DeleteUserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/profile/Partials/DeleteUserForm.tsx -------------------------------------------------------------------------------- /resources/js/pages/profile/Partials/UpdatePasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/profile/Partials/UpdatePasswordForm.tsx -------------------------------------------------------------------------------- /resources/js/pages/profile/Partials/UpdateProfileInformationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/profile/Partials/UpdateProfileInformationForm.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/account/account-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/account/account-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/account/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/appearance/appearance-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/appearance/appearance-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/appearance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/appearance/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/components/content-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/components/content-section.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/components/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/components/sidebar-nav.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/display/display-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/display/display-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/display/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/display/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/notifications/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/notifications/notifications-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/notifications/notifications-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/profile/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/profile/profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/settings/profile/profile-form.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/columns.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table-column-header.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table-faceted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table-faceted-filter.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table-pagination.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table-row-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table-row-actions.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table-toolbar.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table-view-options.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/data-table.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/tasks-dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/tasks-dialogs.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/tasks-import-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/tasks-import-dialog.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/tasks-mutate-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/tasks-mutate-drawer.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/components/tasks-primary-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/components/tasks-primary-buttons.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/context/tasks-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/context/tasks-context.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/data/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/data/data.tsx -------------------------------------------------------------------------------- /resources/js/pages/tasks/data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/data/schema.ts -------------------------------------------------------------------------------- /resources/js/pages/tasks/data/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/data/tasks.ts -------------------------------------------------------------------------------- /resources/js/pages/tasks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/tasks/index.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/data-table-column-header.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/data-table-faceted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/data-table-faceted-filter.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/data-table-pagination.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/data-table-row-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/data-table-row-actions.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/data-table-toolbar.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/data-table-view-options.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-action-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-action-dialog.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-columns.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-delete-dialog.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-dialogs.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-invite-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-invite-dialog.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-primary-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-primary-buttons.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/components/users-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/components/users-table.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/context/users-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/context/users-context.tsx -------------------------------------------------------------------------------- /resources/js/pages/users/data/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/data/data.ts -------------------------------------------------------------------------------- /resources/js/pages/users/data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/data/schema.ts -------------------------------------------------------------------------------- /resources/js/pages/users/data/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/data/users.ts -------------------------------------------------------------------------------- /resources/js/pages/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/pages/users/index.tsx -------------------------------------------------------------------------------- /resources/js/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/providers.tsx -------------------------------------------------------------------------------- /resources/js/types/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/types/blog.ts -------------------------------------------------------------------------------- /resources/js/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/types/global.d.ts -------------------------------------------------------------------------------- /resources/js/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/js/types/index.d.ts -------------------------------------------------------------------------------- /resources/js/types/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/routes/dashboard.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/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/binjuhor/shadcn-lar/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binjuhor/shadcn-lar/HEAD/yarn.lock --------------------------------------------------------------------------------