Skip to content
Snippets Groups Projects
Select Git revision
  • 5225492bbbed0461cb4db7376010aa89d5bbc4a0
  • master default protected
  • 69-resize-image-before-upload
  • 60-add-match-salamander-modal-to-edit-salamander
  • 50-fix-server-error-message
  • 48-fix-gradle
  • 31-camera-communicate-with-api-and-delete-from-cache-2
  • 20-changing-verification-step-in-profile-to-modal
  • 4-add-all-basic-views
  • 1-setup
10 results

CustomButton.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    web.php 1.00 KiB
    <?php
    
    use Illuminate\Support\Facades\Auth;
    use Illuminate\Support\Facades\Route;
    
    /*
    |--------------------------------------------------------------------------
    | Web Routes
    |--------------------------------------------------------------------------
    |
    | Here is where you can register web routes for your application. These
    | routes are loaded by the RouteServiceProvider within a group which
    | contains the "web" middleware group. Now create something great!
    |
    */
    
    Route::get('/', function () {
        return view('welcome');
    })->name('welcome');
    
    Auth::routes([
        'login'     => true,
        'logout'    => true,
        'register'  => true,
        'reset'     => true,
        'confirm'   => false,
        'verify'    => false
    ]);
    
    Auth::routes();
    
    Route::get('/home', 'HomeController@index')->name('home');
    
    Route::get('/templates/{template_id}', 'HomeController@showPopulationTemplate')->name('template.show');
    
    Route::get('/templates/{template_id}/populations/{population_id}', 'HomeController@showPopulation')->name('population.show');