Installing OFAS
System Requirements
PHP 7.1 >
MySQL Database
Apache Web Server
Configuring *.env file
Copy the provide configuration file.
$cp env.example .env
Set the proper database parameters for DB_DATABASE, DB_USERNAME and DB_PASSWORD.
Install OFAS
$composer install
$php artisan migrate --seed
Setting Admin Password
$php artisan tinker
>>> $user = User::find(1);
>>> $user->password = Hash::make('yourpassword');
>>> $user->save();
Â