HomeController.php 603 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use App\Institution;
  5. use App\Workexperience;
  6. use App\Score;
  7. use App\User;
  8. use App\Proposal;
  9. use App\AcademicLevel;
  10. use App\StudentProposalUpload;
  11. use Auth;
  12. class HomeController extends Controller
  13. {
  14. /**
  15. * Create a new controller instance.
  16. *
  17. * @return void
  18. */
  19. public function __construct()
  20. {
  21. $this->middleware('auth');
  22. }
  23. /**
  24. * Show the application dashboard.
  25. *
  26. * @return \Illuminate\Contracts\Support\Renderable
  27. */
  28. public function index()
  29. {
  30. }
  31. }