Table Name: category_post
Generated Schema
/** Create a migration file and put the following code in it**/
Schema::create('category_post', function (Blueprint $table) {
$table->unsignedInteger('post_id')
$table->unsignedInteger('category_id')
});