diff --git a/README.md b/README.md index 6f118ac..bfe7a90 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,20 @@ This Laravel package adds multi-theme support to your application. It also provi ## Features - Any number of themes -- Fallback theme support (Wordpress style); It allows creating a child theme to extend any theme -- Provides a authentication scaffolding similar to `laravel/ui` & `laravel/breeze` +- Fallback theme support (WordPress style); It allows creating a child theme to extend any theme +- Provides authentication scaffolding similar to `laravel/ui` & `laravel/breeze` - Exports all auth controllers, tests, and other files similar to `laravel/breeze` - Provides frontend presets for `Bootstrap`, `Tailwind`, `Vue 2`, `Vue 3` and `React` +If you don't want to use auth scaffolding of this package, instead you want to +use Laravel Fortify, no problem with that. You can use Laravel Themer with +Fortify. Laravel Fortify only gives backend implementation authentication, it +does not provide views or frontend presets. So, use Fortify for backend auth and +Laravel Themer for views and presets. + +## Tutorial +Here is the video for **[Laravel Themer Tutorial](https://www.youtube.com/watch?v=Ty4ZwFTLYXE)**. + ## Installation and setup You can install this package via composer using: @@ -162,8 +171,7 @@ Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details. Please review [our security policy](../../security/policy) on how to report security vulnerabilities. ## Credits -Authentication scaffolding stubs and presets are taken from [Laravel -UI](https://github.com/laravel/ui) and [Laravel Breeze](https://github.com/laravel/breeze). +Authentication scaffolding stubs and presets are taken from [laravel/ui](https://github.com/laravel/ui), [laravel/breeze](https://github.com/laravel/breeze), and [laravel-frontend-presets/tailwindcss](https://github.com/laravel-frontend-presets/tailwindcss). - [Harish Kumar](https://github.com/hkp22) - [All Contributors](../../contributors) diff --git a/src/SolutionProviders/ThemeSolutionProvider.php b/src/SolutionProviders/ThemeSolutionProvider.php index dd2d244..ff5778a 100644 --- a/src/SolutionProviders/ThemeSolutionProvider.php +++ b/src/SolutionProviders/ThemeSolutionProvider.php @@ -23,7 +23,8 @@ public function getSolutions(Throwable $throwable): array BaseSolution::create('Theme') ->setSolutionDescription($message) ->setDocumentationLinks([ - 'Documentation' => 'https://qirolab.com/posts/laravel-themer-multi-theme-support-for-laravel-application-1609688215', + 'Documentation' => 'https://github.com/qirolab/laravel-themer', + 'Video Tutorial' => 'https://www.youtube.com/watch?v=Ty4ZwFTLYXE', ]), ]; }