@extends('installer.layout') @section('content')

Database Setup

This step will create the necessary database tables and optionally populate them with sample data.

@csrf @if(config('installer.allow_seeding'))

This will populate your database with sample data for testing purposes.

@endif

Important:

  • Ensure your database exists and credentials are correct
  • This process will create new tables in your database
  • If tables already exist, some migrations may fail
  • A storage symbolic link will be created automatically
Back
@endsection