Skip to content

boilerplate for Laravel 11  #31

@webds

Description

@webds
  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 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions