Skip to content

Commit d88e06a

Browse files
committed
Documentation
1 parent d0c38ac commit d88e06a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
This Laravel package adds multi-theme support to your application. It also provides a simple authentication scaffolding for a starting point for building a Laravel application. And it also has preset for `Bootstrap`, `Tailwind`, `Vue`, and `React`. So, I believe it is a good alternative to the `laravel/ui` & `laravel/breeze` package.
1111

1212
## Features
13-
- Views & Asset stored in separate the themes folder for easy theme management.
14-
- Theme hierarchy (WordPress style!): It allows creating a child theme to extend any theme.
15-
- Provides a simple authentication scaffolding.
16-
- Provides presets for `bootstrap`, `tailwind`, `vue`, and `react`
13+
- Any number of themes
14+
- Fallback theme support; It allows creating a child theme to extend any theme
15+
- Provides a simple authentication scaffolding similar to laravel/ui & laravel/breeze package
16+
- Provides frontend presets for bootstrap, tailwind, vue, and react
1717

1818
## Documentation
19-
To install, configure and learn how to use Laravel Themer package please go to the [Documentation](https://qirolab.com).
19+
To install, configure and learn how to use Laravel Themer package please go to the [Documentation](https://qirolab.com/posts/laravel-themer-multi-theme-support-for-laravel-application-1609688215).
2020

2121
## Support us
2222
We invest a lot of resources into video tutorials and creating open-source packages. If you like what I do or if you ever made use of something I built or from my videos, consider supporting us. This will allow us to focus even more time on the tutorials and open-source projects we're working on.

config/theme.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
| Default Active Theme
77
|--------------------------------------------------------------------------
88
|
9-
| It will be a default active theme.
9+
| It will assign the default active theme to be used if one is not set during
10+
| runtime.
1011
*/
1112
'active' => null,
1213

src/SolutionProviders/ThemeViewNotFoundSolutionProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getSolutions(Throwable $throwable): array
3434
BaseSolution::create('Theme')
3535
->setSolutionDescription($message)
3636
->setDocumentationLinks([
37-
'Documentation' => 'http://qirolab.com',
37+
'Documentation' => 'https://qirolab.com/posts/laravel-themer-multi-theme-support-for-laravel-application-1609688215',
3838
]),
3939
];
4040
}

0 commit comments

Comments
 (0)