Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boilerplate for Laravel 11 #31

Open
webds opened this issue Nov 3, 2024 · 0 comments
Open

boilerplate for Laravel 11 #31

webds opened this issue Nov 3, 2024 · 0 comments

Comments

@webds
Copy link

webds commented Nov 3, 2024

  1. Installed Laravel 11

  2. Installed the laravel/breeze package

  3. Installed your package.

  4. 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);)

  5. Created a user

  6. 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,
 }),
 ],
});
  1. then install the [email protected] [email protected] 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant