Skip to content

Commit

Permalink
updated video link
Browse files Browse the repository at this point in the history
  • Loading branch information
hkp22 committed Feb 1, 2021
1 parent 7382a69 commit a56edec
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion src/SolutionProviders/ThemeSolutionProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]),
];
}
Expand Down

0 comments on commit a56edec

Please sign in to comment.