17 lines
492 B
PHP
17 lines
492 B
PHP
<?php
|
||
$ndeMatrices = DB::table('nde_matrices')
|
||
->join('weld_logs', 'nde_matrices.line', '=', 'weld_logs.line_number')
|
||
->whereNull('nde_matrices.project'); // project sütunu boş olanları bul
|
||
|
||
if(isset($id))
|
||
{
|
||
$ndeMatrices = $ndeMatrices->where("weld_logs.id", $id);
|
||
}
|
||
|
||
$ndeMatrices = $ndeMatrices
|
||
->update([
|
||
'nde_matrices.project' => DB::raw('weld_logs.project') // weld_logs tablosundaki project değeri ile güncelle
|
||
]);
|
||
|
||
//dump("$ndeMatrices NDE Matrix Sync Project Name");
|
||
?>
|