Cosas del login, ademas de crear admin panel

This commit is contained in:
Daniel Cortés
2019-06-23 13:38:24 -04:00
parent 61cd63b265
commit be42d6f599
29 changed files with 365 additions and 274 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class AdminController extends Controller
{
public function index()
{
return view('admin.index');
}
}