Skip to content

Commit

Permalink
fix(ticket): Fix load tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Mar 9, 2024
1 parent 073731c commit 884f929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Ticket/TicketIndexController.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function index(Request $request)

$data['tickets'] = $ticket->getAllByCompanyId((int) Auth::user()->company_id, $search);
$data['search'] = $search;
$data['customers'] = Customer::whereCompany((int) Auth::user()->company);
$data['customers'] = Customer::whereCompany(Auth::user()->company);

return view('ticket.index', $data);
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

const APP_VERSION = '3.7.7';
const APP_VERSION = '3.7.8';

0 comments on commit 884f929

Please sign in to comment.