Banking System

Setup

  1. Clone the repository:

    git clone https://github.com/awalhadi/banking-system
    cd banking-system
  2. Install composer dependencies:

    composer install
  3. Setup environment variables:

    cp .env.example .env
    php artisan key:generate
  4. Configure .env file with database information.

  5. Run migrations:

    php artisan migrate
  6. Serve the application:

    php artisan serve
  7. Install npm packages (you can use yarn or npm):

    yarn install

    or

    npm run install
  8. Then run dev

    yarn dev

    or

    npm run dev