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

Installation Successfull

{{ config('app.name') }} has been successfully installed, now you need to set up a cron job:

* * * * * php {{ base_path() }}/artisan schedule:run >> /dev/null 2>&1

If you are not certain on how to configure the cron job with the minimum required PHP version ({{ config('installer.core.minPhpVersion') }}), the best is to consult with your hosting provider.

On some shared hostings you may need to specify full path to the PHP executable (for example, /usr/local/bin/php{{ str_replace('.', '', config('installer.core.minPhpVersion')) }} or /opt/alt/php{{ str_replace('.', '', config('installer.core.minPhpVersion')) }}/usr/bin/phpinstead of php), additionally, you can refer to our docs in order to read more about cron job configuration.

Admin Credentials

Email: {{ $user->email }}
Password: your chosen password

Login
@endsection