Skip to content

Instantly share code, notes, and snippets.

@jobcerto
Created May 24, 2018 02:20
Show Gist options
  • Save jobcerto/cf4c6ee8100635b292829f4916fd4bc3 to your computer and use it in GitHub Desktop.
Save jobcerto/cf4c6ee8100635b292829f4916fd4bc3 to your computer and use it in GitHub Desktop.
<?php
use App\Customer\Models\User;
use Hyn\Tenancy\Models\Customer;
Route::get('customers', function () {
return Customer::all();
});
Route::get('users', function () {
return User::all();
});
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment