I tried running the following code and unfortunately, it throws an undefined method error.
// Throws an Error
$tickets = Tickets::orderBy('price','desc')->all();
$tickets = Tickets::orderBy('price','desc')->get();
I tried running the following code and unfortunately, it throws an undefined method error.
// Throws an Error
$tickets = Tickets::orderBy('price','desc')->all();
$tickets = Tickets::orderBy('price','desc')->get();