1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use App\Institution;
- use App\Workexperience;
- use App\Score;
- use App\User;
- use App\Proposal;
- use App\AcademicLevel;
- use App\StudentProposalUpload;
- use Auth;
- class HomeController extends Controller
- {
- /**
- * Create a new controller instance.
- *
- * @return void
- */
- public function __construct()
- {
- $this->middleware('auth');
- }
- /**
- * Show the application dashboard.
- *
- * @return \Illuminate\Contracts\Support\Renderable
- */
- public function index()
- {
-
- }
- }
|