@extends('layouts.super-admin') @section('page-title')
* * * * * '.PHP_BINDIR.'/php '. base_path() .'/artisan schedule:run >> /dev/null 2>&1
';
} catch (\Throwable $th) {
echo '* * * * * /php'. base_path() .'/artisan schedule:run >> /dev/null 2>&1
';
}
@endphp
.htaccess
at the root of folder
(where app, bootstrap, config folder resides) and add the following content
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>