diff --git a/laravel ca b/laravel ca
new file mode 100644
index 0000000..7ae8d16
--- /dev/null
+++ b/laravel ca
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | CourseCode |
+ CourseName |
+ Duration |
+ Price |
+
+
+
+ @foreach($project as $k)
+
+ | {{$k->CourseCode}} |
+ {{$k->CourseName}} |
+ {{$k->Duration}} |
+ {{$k->Price}} |
+
+ @endforeach
+
+
+
+
+
+
+
+
+
+
+
+
+
+/****** controller code *****/
+
+increments('id');
+ $table->text('CourseCode');
+ $table->string('CourseName');
+ $table->text('Duration');
+ $table->text('Price');
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('projects');
+ }
+}
+/****** route code *****/
+