Skip to content

Commit 3223d6c

Browse files
Merge pull request #5 from dinushchathurya/develop
feat: Finish CRUD without validation
2 parents 6bd1ec2 + 50b71be commit 3223d6c

File tree

16 files changed

+72889
-181
lines changed

16 files changed

+72889
-181
lines changed

database/migrations/2021_12_12_041009_create_products_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
{
1616
Schema::create('products', function (Blueprint $table) {
1717
$table->id();
18-
$table->string('title');
18+
$table->string('name');
1919
$table->string('detail');
2020
$table->timestamps();
2121
});

package-lock.json

Lines changed: 17162 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
"sass": "^1.32.11",
2121
"sass-loader": "^11.0.1",
2222
"vue": "^2.6.12",
23+
"vue-loader": "^15.9.7",
2324
"vue-template-compiler": "^2.6.12"
25+
},
26+
"dependencies": {
27+
"vue-axios": "^3.4.0",
28+
"vue-router": "^3.5.3"
2429
}
2530
}

0 commit comments

Comments
 (0)