File Manager Lite
Dir:
/home/durantab/ecom2.apanrang.com
Upload
[..]
.editorconfig (213 B)
Edit
Rename
Del
.env (5.82 KB)
Edit
Rename
Del
.env.example (1.62 KB)
Edit
Rename
Del
.eslintrc.json (751 B)
Edit
Rename
Del
.gitignore (442 B)
Edit
Rename
Del
.htaccess (1.8 KB)
Edit
Rename
Del
.user.ini (591 B)
Edit
Rename
Del
.well-known/
Rename
Del
123.php (62 B)
Edit
Rename
Del
LICENSE.md (23 B)
Edit
Rename
Del
README.md (95 B)
Edit
Rename
Del
_ide_helper.php (776.38 KB)
Edit
Rename
Del
addons/
Rename
Del
app/
Rename
Del
artisan (1.7 KB)
Edit
Rename
Del
beba.phP7 (0 B)
Edit
Rename
Del
bootstrap/
Rename
Del
composer.json (2.97 KB)
Edit
Rename
Del
composer.lock (407.08 KB)
Edit
Rename
Del
config/
Rename
Del
database/
Rename
Del
ecommerce9.zip (113.83 MB)
Edit
Rename
Del
error_log (21.49 KB)
Edit
Rename
Del
index.html (1.67 KB)
Edit
Rename
Del
index.php (6.7 KB)
Edit
Rename
Del
package.json (1.02 KB)
Edit
Rename
Del
php.ini (585 B)
Edit
Rename
Del
phpunit.xml (1.14 KB)
Edit
Rename
Del
public/
Rename
Del
resources/
Rename
Del
robots.txt (83 B)
Edit
Rename
Del
routes/
Rename
Del
server.php (584 B)
Edit
Rename
Del
storage/
Rename
Del
temp/
Rename
Del
tests/
Rename
Del
vendor/
Rename
Del
vv.jpg (44.28 KB)
Edit
Rename
Del
web.config (1.19 KB)
Edit
Rename
Del
webpack.mix.js (552 B)
Edit
Rename
Del
yarn.lock (208.22 KB)
Edit
Rename
Del
yii.txt (1 B)
Edit
Rename
Del
Edit: artisan
#!/usr/bin/env php <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so that we do not have to worry about the | loading of any our classes "manually". Feels great to relax. | */ require __DIR__.'/vendor/autoload.php'; $app = require_once __DIR__.'/bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Artisan Application |-------------------------------------------------------------------------- | | When we run the console application, the current CLI command will be | executed in this console and the response sent back to a terminal | or another output device for the developers. Here goes nothing! | */ $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running, we will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. | */ $kernel->terminate($input, $status); exit($status);
Simpan