├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Filament │ └── Resources │ │ ├── CourseResource.php │ │ └── CourseResource │ │ ├── Pages │ │ ├── CreateCourse.php │ │ ├── EditCourse.php │ │ └── ListCourses.php │ │ └── RelationManagers │ │ └── EpisodesRelationManager.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ └── VerifyEmailController.php │ │ ├── BillingController.php │ │ ├── CheckoutController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Infolists │ └── Components │ │ └── VideoPlayerEntry.php ├── Livewire │ ├── Actions │ │ └── Logout.php │ ├── CourseList.php │ ├── Forms │ │ └── LoginForm.php │ ├── Pricing.php │ ├── ShowCourse.php │ └── WatchEpisode.php ├── Models │ ├── Course.php │ ├── Episode.php │ ├── Tag.php │ └── User.php ├── Policies │ └── CoursePolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ ├── RouteServiceProvider.php │ └── VoltServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── bun.lockb ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cashier.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── stripe.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CourseFactory.php │ ├── EpisodeFactory.php │ ├── TagFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_05_03_000001_create_customer_columns.php │ ├── 2019_05_03_000002_create_subscriptions_table.php │ ├── 2019_05_03_000003_create_subscription_items_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_11_23_040716_create_courses_table.php │ ├── 2023_12_13_204543_create_episodes_table.php │ ├── 2024_01_24_204328_create_course_user_table.php │ ├── 2024_01_24_205129_create_episode_user_table.php │ ├── 2024_02_07_212225_create_tags_table.php │ └── 2024_02_07_212456_create_course_tag_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js └── robots.txt ├── resources ├── css │ └── app.css ├── js │ └── app.js └── views │ ├── components │ ├── action-message.blade.php │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── danger-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── layouts │ │ └── app.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── primary-button.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ └── text-input.blade.php │ ├── dashboard.blade.php │ ├── infolists │ └── components │ │ └── video-player-entry.blade.php │ ├── layouts │ ├── app.blade.php │ └── guest.blade.php │ ├── livewire │ ├── course-list.blade.php │ ├── layout │ │ └── navigation.blade.php │ ├── pages │ │ └── auth │ │ │ ├── confirm-password.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ ├── register.blade.php │ │ │ ├── reset-password.blade.php │ │ │ └── verify-email.blade.php │ ├── pricing.blade.php │ ├── profile │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── show-course.blade.php │ ├── watch-episode.blade.php │ └── welcome │ │ └── navigation.blade.php │ ├── profile.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Admin │ │ └── CourseResourceTest.php │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ ├── Livewire │ │ ├── CourseListTest.php │ │ ├── PricingTest.php │ │ ├── ShowCourseTest.php │ │ └── WatchEpisodeTest.php │ ├── ProfileTest.php │ └── RoutesTest.php ├── Pest.php ├── TestCase.php └── Unit │ ├── ExampleTest.php │ └── Models │ ├── CourseTest.php │ ├── EpisodeTest.php │ └── UserTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Resources/CourseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Filament/Resources/CourseResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CourseResource/Pages/CreateCourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Filament/Resources/CourseResource/Pages/CreateCourse.php -------------------------------------------------------------------------------- /app/Filament/Resources/CourseResource/Pages/EditCourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Filament/Resources/CourseResource/Pages/EditCourse.php -------------------------------------------------------------------------------- /app/Filament/Resources/CourseResource/Pages/ListCourses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Filament/Resources/CourseResource/Pages/ListCourses.php -------------------------------------------------------------------------------- /app/Filament/Resources/CourseResource/RelationManagers/EpisodesRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Filament/Resources/CourseResource/RelationManagers/EpisodesRelationManager.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BillingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Controllers/BillingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Controllers/CheckoutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Infolists/Components/VideoPlayerEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Infolists/Components/VideoPlayerEntry.php -------------------------------------------------------------------------------- /app/Livewire/Actions/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Livewire/Actions/Logout.php -------------------------------------------------------------------------------- /app/Livewire/CourseList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Livewire/CourseList.php -------------------------------------------------------------------------------- /app/Livewire/Forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Livewire/Forms/LoginForm.php -------------------------------------------------------------------------------- /app/Livewire/Pricing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Livewire/Pricing.php -------------------------------------------------------------------------------- /app/Livewire/ShowCourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Livewire/ShowCourse.php -------------------------------------------------------------------------------- /app/Livewire/WatchEpisode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Livewire/WatchEpisode.php -------------------------------------------------------------------------------- /app/Models/Course.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Models/Course.php -------------------------------------------------------------------------------- /app/Models/Episode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Models/Episode.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/CoursePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Policies/CoursePolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/VoltServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/Providers/VoltServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/bun.lockb -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cashier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/cashier.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/session.php -------------------------------------------------------------------------------- /config/stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/stripe.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CourseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/factories/CourseFactory.php -------------------------------------------------------------------------------- /database/factories/EpisodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/factories/EpisodeFactory.php -------------------------------------------------------------------------------- /database/factories/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/factories/TagFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_03_000001_create_customer_columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2019_05_03_000001_create_customer_columns.php -------------------------------------------------------------------------------- /database/migrations/2019_05_03_000002_create_subscriptions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2019_05_03_000002_create_subscriptions_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_03_000003_create_subscription_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2019_05_03_000003_create_subscription_items_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_11_23_040716_create_courses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2023_11_23_040716_create_courses_table.php -------------------------------------------------------------------------------- /database/migrations/2023_12_13_204543_create_episodes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2023_12_13_204543_create_episodes_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_24_204328_create_course_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2024_01_24_204328_create_course_user_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_24_205129_create_episode_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2024_01_24_205129_create_episode_user_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_07_212225_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2024_02_07_212225_create_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_07_212456_create_course_tag_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/migrations/2024_02_07_212456_create_course_tag_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/input-label.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/primary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/primary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/infolists/components/video-player-entry.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/infolists/components/video-player-entry.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/course-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/course-list.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/layout/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/layout/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pages/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pages/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pages/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pages/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pages/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pages/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pricing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/pricing.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/show-course.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/show-course.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/watch-episode.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/watch-episode.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/welcome/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/livewire/welcome/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/profile.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/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/tuto1902/laravel-lms/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Admin/CourseResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Admin/CourseResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/CourseListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Livewire/CourseListTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/PricingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Livewire/PricingTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/ShowCourseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Livewire/ShowCourseTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/WatchEpisodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/Livewire/WatchEpisodeTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Feature/RoutesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Feature/RoutesTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/Models/CourseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Unit/Models/CourseTest.php -------------------------------------------------------------------------------- /tests/Unit/Models/EpisodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Unit/Models/EpisodeTest.php -------------------------------------------------------------------------------- /tests/Unit/Models/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/tests/Unit/Models/UserTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/laravel-lms/HEAD/vite.config.js --------------------------------------------------------------------------------