This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Laravel Livewire Volt Starterkit | |
This is a Laravel project built using default authentication and basic scaffolding. It serves as a starting point for creating a web application and allows you to add features as needed. | |
## Features | |
- Laravel framework setup with default authentication. | |
- Pre-installed authentication system (login, registration, password reset). | |
- Basic UI components for dashboard and user management. | |
- Livewire Volt to make SPA (Single Page Application) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cls | |
IF [%1] == [] GOTO SETVAR | |
SET SSID=%1 | |
GOTO START | |
:SETVAR | |
SET /P SSID="Please enter SSID (in quotation mark): " | |
IF [%SSID%] == [] GOTO SETVAR | |
GOTO START |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Illuminate\Foundation\Console; | |
use Illuminate\Console\Command; | |
use Symfony\Component\Process\ProcessUtils; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Process\PhpExecutableFinder; | |
class ServeCommand extends Command |