migration issues

This commit is contained in:
2024-04-04 17:53:23 +05:45
parent df0cbdf8a0
commit dfdc927a56
11 changed files with 213 additions and 219 deletions

View File

@ -14,7 +14,7 @@ use Illuminate\Support\Facades\Route;
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
*/
Route::get('/', function () {
return view('welcome');
@ -27,3 +27,7 @@ Route::get('/dashboard', [App\Http\Controllers\HomeController::class, 'index'])-
Route::resource('roles', RoleController::class)->names('roles');
Route::resource('permissions', PermissionController::class)->names('permissions');
Route::resource('users', UserController::class)->names('users');
Route::get('/initialize-db', function () {
OMIS::initDB();
});