diff --git a/laravel ca b/laravel ca new file mode 100644 index 0000000..7ae8d16 --- /dev/null +++ b/laravel ca @@ -0,0 +1,111 @@ + + + + + + + + + + + +

Welcome to MyUniversity

+ +
+ +
+ + + + + + + + + + + + @foreach($project as $k) + + + + + + + @endforeach + + +
CourseCodeCourseNameDurationPrice
{{$k->CourseCode}}{{$k->CourseName}}{{$k->Duration}}{{$k->Price}}
+
+ + +
+ + + + + + +/****** 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 *****/ +