Laravel eloquent get data without duplicates

40

MyModel::distinct()->get(['column_name']);
// Retrieve the first task
$task = Task::first();

$newTask = $task->replicate();
$newTask->project_id = 16; // the new project_id
$newTask->save();

Comments

Submit
0 Comments