Coder Social home page Coder Social logo

craftable-demo's People

Contributors

alexconrad avatar dependabot[bot] avatar matejminar avatar palypster avatar richarddominik avatar sdudasko avatar strstensky avatar vsotreshko avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

craftable-demo's Issues

vue-multiselect issue on edit

Hi,
how to set selected the option when i'm editing?
i follow all the example from 'articles-with-relationship'
but i dont know why the multiselect doesn't set the value.

Unable to install new demo

Hello, i found 3 problems on the new demo.
On the posts tables, the author_id is not defined as unsigned so when the migration tries to create the foreign key fails
public function up() { Schema::table('posts', function (Blueprint $table) { $table->integer('author_id')->nullable(); $table->foreign('author_id')->references('id')->on('authors')->onDelete('cascade'); }); }
it can be solved just changing the function to
public function up() { Schema::table('posts', function (Blueprint $table) { $table->integer('author_id')->unsigned()->nullable(); $table->foreign('author_id')->references('id')->on('authors')->onDelete('cascade'); }); }

Same error on articles with relationships table, with the field author_id
The last one is articles_with_relationships_tags table, the foreign key name is too long (max is 64 characteres).
This one can be solved just passing the key name as a second parameter to the foreign method

"Articles With Relationship" code doesn't match or explain properly

The code in github doesn't match the demo.
Just to get multiselect work there is too much of hit and try required, especially for a person who haven't worked with Vue.

There is lack of proper explanation about the implementation of Articles With Relationship, which I don't expect.
I was at least expecting the code and demo both are in sync but it isn't case. Very good example: multiselect's :multiple is set to false. and you use same code you see you can't do multiple selection unless you change it to true.
There are few more things which doesn't match. Anyway, I hope github will sync the code what you have in demo.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.