Skip to content

Instantly share code, notes, and snippets.

@leemcd56
Created September 13, 2023 20:08
Show Gist options
  • Save leemcd56/8f2763f7f766d54c657148a49922c888 to your computer and use it in GitHub Desktop.
Save leemcd56/8f2763f7f766d54c657148a49922c888 to your computer and use it in GitHub Desktop.
Laravel joinWithOxfordComma (X @martinbean)
<?php
Collection::macro('joinWithOxfordComma', function(): string {
/** @var \Illuminate\Support\Collection $this */
return $this->join(
glue: ', ',
finalGlue: $this->count() > 2 ? ', and ' : ' and ',
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment