Skip to content

Commit

Permalink
Adding latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed Jun 2, 2024
1 parent c4b6817 commit 0ebd319
Show file tree
Hide file tree
Showing 4 changed files with 3,949 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<a href="https://packagist.org/packages/devdojo/auth"><img src="https://img.shields.io/packagist/l/devdojo/auth" alt="License"></a>
</p>

## About Auth
## About

The DevDojo Auth package is a plug'n play Authentication package for your Laravel application. Easily update and modify your authentication pages, add social providers, and many other auth features.
Auth is a plug'n play authentication package for any <a href="https://laravel.com" target="_blank">Laravel application</a>.

<a href="https://devdojo.com/auth" target="_blank"><img src="https://cdn.devdojo.com/images/june2024/auth-screens.jpeg" class="w-full h-full" style="border-radius:10px" /></a>
<a href="https://devdojo.com/auth" target="_blank"><img src="https://cdn.devdojo.com/images/june2024/pages.jpeg" class="w-full h-full" style="border-radius:10px" /></a>

Be sure to visit the official documentation at [https://devdojo.com/auth/docs](https://devdojo.com/auth/docs)

Expand Down
3,944 changes: 3,943 additions & 1 deletion public/build/assets/styles.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/AuthServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function boot(): void

// Publish the components
$this->publishes([
__DIR__.'/../resources/views/components/elements' => resource_path('views/components/app/elements'),
__DIR__.'/../resources/views/components/elements' => resource_path('views/components/auth/elements'),
], 'auth:components');

// Registering package commands.
Expand Down
3 changes: 2 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'resources/views/**/*.blade.php'
'resources/views/**/*.blade.php',
'../../resources/views/components/auth/**/*.blade.php'
],

theme: {},
Expand Down

0 comments on commit 0ebd319

Please sign in to comment.