Skip to content

Commit

Permalink
fixed #390
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Jun 21, 2018
1 parent 5a46f86 commit e449343
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/Common/Search.php
Expand Up @@ -90,7 +90,7 @@ public function search()
'name' => $customer->name,
'type' => trans_choice('general.customers', 1),
'color' => '#03d876',
'href' => url('incomes/customers/' . $customer->id . '/edit'),
'href' => url('incomes/customers/' . $customer->id),
];
}
}
Expand Down Expand Up @@ -120,7 +120,7 @@ public function search()
'name' => $vendor->name,
'type' => trans_choice('general.vendors', 1),
'color' => '#ff8373',
'href' => url('expenses/vendors/' . $vendor->id . '/edit'),
'href' => url('expenses/vendors/' . $vendor->id),
];
}
}
Expand Down

0 comments on commit e449343

Please sign in to comment.