UserController.php 447 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Api\V1\Controllers;
  3. use App\Http\Controllers\Controller;
  4. use Illuminate\Contracts\Hashing\Hasher;
  5. use Auth;
  6. class UserController extends Controller
  7. {
  8. /**
  9. * Create a new controller instance.
  10. *
  11. * @return void
  12. */
  13. public function __construct()
  14. {
  15. //
  16. }
  17. //
  18. public function show(Hasher $hasher){
  19. dd(1);
  20. /*$a = Auth::user();
  21. dd($a); */
  22. }
  23. }