Skip to content

Commit a56edec

Browse files
committed
updated video link
1 parent 7382a69 commit a56edec

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,20 @@ This Laravel package adds multi-theme support to your application. It also provi
1111

1212
## Features
1313
- Any number of themes
14-
- Fallback theme support (Wordpress style); It allows creating a child theme to extend any theme
15-
- Provides a authentication scaffolding similar to `laravel/ui` & `laravel/breeze`
14+
- Fallback theme support (WordPress style); It allows creating a child theme to extend any theme
15+
- Provides authentication scaffolding similar to `laravel/ui` & `laravel/breeze`
1616
- Exports all auth controllers, tests, and other files similar to `laravel/breeze`
1717
- Provides frontend presets for `Bootstrap`, `Tailwind`, `Vue 2`, `Vue 3` and `React`
1818

19+
If you don't want to use auth scaffolding of this package, instead you want to
20+
use Laravel Fortify, no problem with that. You can use Laravel Themer with
21+
Fortify. Laravel Fortify only gives backend implementation authentication, it
22+
does not provide views or frontend presets. So, use Fortify for backend auth and
23+
Laravel Themer for views and presets.
24+
25+
## Tutorial
26+
Here is the video for **[Laravel Themer Tutorial](https://www.youtube.com/watch?v=Ty4ZwFTLYXE)**.
27+
1928
## Installation and setup
2029

2130
You can install this package via composer using:
@@ -162,8 +171,7 @@ Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
162171
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
163172

164173
## Credits
165-
Authentication scaffolding stubs and presets are taken from [Laravel
166-
UI](https://github.com/laravel/ui) and [Laravel Breeze](https://github.com/laravel/breeze).
174+
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).
167175

168176
- [Harish Kumar](https://github.com/hkp22)
169177
- [All Contributors](../../contributors)

src/SolutionProviders/ThemeSolutionProvider.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function getSolutions(Throwable $throwable): array
2323
BaseSolution::create('Theme')
2424
->setSolutionDescription($message)
2525
->setDocumentationLinks([
26-
'Documentation' => 'https://qirolab.com/posts/laravel-themer-multi-theme-support-for-laravel-application-1609688215',
26+
'Documentation' => 'https://github.com/qirolab/laravel-themer',
27+
'Video Tutorial' => 'https://www.youtube.com/watch?v=Ty4ZwFTLYXE',
2728
]),
2829
];
2930
}

0 commit comments

Comments
 (0)