DEV Community

Discussion on: 6 useful tips to boost your Laravel code

Collapse
 
rvxlab profile image
RVxLab • Edited

3. Avoid errors by using the optional helper

As of PHP 8 you can use the null-safe operator.

return $invoice?->total;
Enter fullscreen mode Exit fullscreen mode