2
は、クエリビルダーを使用する際にタイムスタンプを自動的に使用する手段があります。現在はCARBONを使用しています。 created_at
とupdate_at
は雄弁の一部であるLaravel 5.4のタイムスタンプを自動的に使用するクエリビルダー
DB::table('product_in_out')->insert(
['product_id' => $product_id,
'warehouse_id' => $warehouse_id,
'balance_before' => Product::getProductBalanceOf($action_id, $product_id),
'in' => $product_qty,
'out' => '0',
'after_balance' => Product::getProductBalanceOf($action_id, $product_id)+$product_qty,
'action' => 'ProcurementReceipt',
'action_id' => $action_id,
'created_by' => auth()->user()->id,
'updated_by' => auth()->user()->id,
'is_active' => '1',
'created_at' => \Carbon\Carbon::now(), # \Datetime()
'updated_at' => \Carbon\Carbon::now(),# \Datetime() ]
);
私はあなたの意見を持っていたので、自動タイムスタンプは雄弁に過ぎないのですか? –
@MartneyAchaはい、クエリビルダを使用すると、手動で行う必要があります –
Alright Thanks Sagar –