Skip to content

Instantly share code, notes, and snippets.

@nelsongei
Created September 13, 2021 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nelsongei/687e19616a90f0f97728a978d384271a to your computer and use it in GitHub Desktop.
Save nelsongei/687e19616a90f0f97728a978d384271a to your computer and use it in GitHub Desktop.
<?php
public function index()
{
$users = User::orderBy('id')->get();
$emails = Attachment::orderBy('id')->get();
return view('welcome', compact('users', 'emails'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment