fix: BonExchangeController

- there is no position column
This commit is contained in:
HDVinnie
2023-07-03 10:16:27 -04:00
parent 7cb3013e8b
commit 96be51efb7

View File

@@ -27,7 +27,7 @@ class BonExchangeController extends Controller
public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
{
return view('Staff.bon_exchange.index', [
'bonExchanges' => BonExchange::orderBy('position')->get(),
'bonExchanges' => BonExchange::all(),
]);
}