id(); $table->date('date'); $table->string('branch'); $table->string('item'); $table->integer('quantity'); $table->integer('total_price'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sales'); } };