मुझे लगता है कि आपको timestamp
. का उपयोग करने की आवश्यकता नहीं है अपने फ़ील्ड बनाने के लिए विधि, लेकिन आपको dateTime
. का उपयोग करना चाहिए विधि:
Schema::create('pusher_out_of_stocks', function (Blueprint $table) {
$table->increments('id');
$table->integer('pusher_id');
$table->integer('location_id');
$table->integer('product_id');
$table->dateTime('oos_at');
$table->dateTime('restocked_at')->nullable();
$table->timestamps();
$table->softDeletes();
});
यह काम करना चाहिए :)
आशा है कि इससे मदद मिली!