-
Notifications
You must be signed in to change notification settings - Fork 11
boilerplate for Laravel 11 #31
Copy link
Copy link
Open
Description
-
Installed Laravel 11
-
Installed the laravel/breeze package
-
Installed your package.
-
Used Variant 2 - Flexible for the model
(by the way, you have an error there and instead
$this->app->concord->registerModel(\Konekt\User\Contracts\User::class, \App\User::class);
necessary:
$this->app->concord->registerModel(\Konekt\User\Contracts\User::class, \App\Models\User::class);) -
Created a user
-
Your example uses Laravel Mix
Now, most everyone uses Vite.
Therefore, it is necessary to edit vite.config.js
export default defineConfig({
plugins: [
laravel({
input: [
// 'resources/css/app.css',
'resources/js/app.js',
'vendor/konekt/appshell/src/resources/assets/js/appshell.standalone.js', // additional JS file
'vendor/konekt/appshell/src/resources/assets/sass/appshell.sass', // Sass file
],
refresh: true,
}),
],
});
- then install the bootstrap@5.3 alpinejs@3.10 popper.js package and run it.
But nothing happened in the end (
I would like to ask you to upload the Application boilerplate for Laravel 11 using vite settings to Github.
I think that's why we couldn't test your package.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels