Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Bottelet committed Nov 22, 2020
1 parent 17fe5cf commit 4a837c5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions app/Http/Controllers/TasksController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ public function index()

public function anyData()
{
<<<<<<< HEAD
$tasks = Task::with(['user', 'status', 'client'])->select(
['external_id', 'title', 'created_at', 'deadline', 'user_assigned_id', 'status_id', 'client_id']
)->get();
=======
$tasks = Task::with(['user', 'status'])->select(
collect(['external_id', 'title', 'created_at', 'deadline', 'user_assigned_id', 'status_id'])
->map(function ($field) {
Expand All @@ -65,7 +60,6 @@ public function anyData()
})
->all()
);
>>>>>>> develop

return Datatables::of($tasks)
->addColumn('titlelink', function ($tasks) {
Expand Down

0 comments on commit 4a837c5

Please sign in to comment.