web.php 727 B

123456789101112131415161718192021222324252627
  1. <?php
  2. use App\Http\Controllers\DashboardController;
  3. use App\Http\Controllers\ProfileController;
  4. use Illuminate\Support\Facades\Route;
  5. /*
  6. |--------------------------------------------------------------------------
  7. | Web Routes
  8. |--------------------------------------------------------------------------
  9. |
  10. | Here is where you can register web routes for your application. These
  11. | routes are loaded by the RouteServiceProvider and all of them will
  12. | be assigned to the "web" middleware group. Make something great!
  13. |
  14. */
  15. Route::get('/', [DashboardController::class, 'index']);
  16. Route::post('/idea', [DashboardController::class, 'index'])->name('idea.create');
  17. Route::get('/terms', function (){
  18. return view('terms');
  19. });