upload project
|
|
@ -0,0 +1,18 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[compose.yaml]
|
||||
indent_size = 4
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
APP_NAME=Laravel
|
||||
APP_ENV=local
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
||||
APP_LOCALE=en
|
||||
APP_FALLBACK_LOCALE=en
|
||||
APP_FAKER_LOCALE=en_US
|
||||
|
||||
APP_MAINTENANCE_DRIVER=file
|
||||
# APP_MAINTENANCE_STORE=database
|
||||
|
||||
PHP_CLI_SERVER_WORKERS=4
|
||||
|
||||
BCRYPT_ROUNDS=12
|
||||
|
||||
LOG_CHANNEL=stack
|
||||
LOG_STACK=single
|
||||
LOG_DEPRECATIONS_CHANNEL=null
|
||||
LOG_LEVEL=debug
|
||||
|
||||
DB_CONNECTION=sqlite
|
||||
# DB_HOST=127.0.0.1
|
||||
# DB_PORT=3306
|
||||
# DB_DATABASE=laravel
|
||||
# DB_USERNAME=root
|
||||
# DB_PASSWORD=
|
||||
|
||||
SESSION_DRIVER=database
|
||||
SESSION_LIFETIME=120
|
||||
SESSION_ENCRYPT=false
|
||||
SESSION_PATH=/
|
||||
SESSION_DOMAIN=null
|
||||
|
||||
BROADCAST_CONNECTION=log
|
||||
FILESYSTEM_DISK=local
|
||||
QUEUE_CONNECTION=database
|
||||
|
||||
CACHE_STORE=database
|
||||
# CACHE_PREFIX=
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_CLIENT=phpredis
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
MAIL_MAILER=log
|
||||
MAIL_SCHEME=null
|
||||
MAIL_HOST=127.0.0.1
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_FROM_ADDRESS="hello@example.com"
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_DEFAULT_REGION=us-east-1
|
||||
AWS_BUCKET=
|
||||
AWS_USE_PATH_STYLE_ENDPOINT=false
|
||||
|
||||
VITE_APP_NAME="${APP_NAME}"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
* text=auto eol=lf
|
||||
|
||||
*.blade.php diff=html
|
||||
*.css diff=css
|
||||
*.html diff=html
|
||||
*.md diff=markdown
|
||||
*.php diff=php
|
||||
|
||||
/.github export-ignore
|
||||
CHANGELOG.md export-ignore
|
||||
.styleci.yml export-ignore
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
*.log
|
||||
.DS_Store
|
||||
.env
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
.phpunit.result.cache
|
||||
/.fleet
|
||||
/.idea
|
||||
/.nova
|
||||
/.phpunit.cache
|
||||
/.vscode
|
||||
/.zed
|
||||
/auth.json
|
||||
/node_modules
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/storage/pail
|
||||
/vendor
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
Thumbs.db
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
FROM php:8.2-fpm
|
||||
|
||||
WORKDIR /var/www
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
git \
|
||||
curl \
|
||||
libpng-dev \
|
||||
libonig-dev \
|
||||
libxml2-dev \
|
||||
zip \
|
||||
unzip \
|
||||
libzip-dev \
|
||||
libicu-dev \
|
||||
libjpeg62-turbo-dev \
|
||||
libfreetype6-dev \
|
||||
gnupg \
|
||||
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
||||
&& apt-get install -y nodejs \
|
||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
|
||||
&& docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd zip intl
|
||||
|
||||
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
||||
|
||||
COPY . /var/www
|
||||
|
||||
RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache
|
||||
|
||||
EXPOSE 9000
|
||||
CMD ["php-fpm"]
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# Sistem Pakar Jagung Fix
|
||||
|
||||
Aplikasi sistem pakar untuk mendiagnosis penyakit tanaman jagung hibrida menggunakan metode Forward Chaining.
|
||||
|
||||
## Fitur
|
||||
- Diagnosa penyakit berdasarkan gejala
|
||||
- Basis pengetahuan (aturan)
|
||||
- Manajemen data gejala & penyakit
|
||||
|
||||
## Teknologi
|
||||
- Laravel
|
||||
- PHP
|
||||
- MySQL
|
||||
|
||||
## Author
|
||||
Yugas12
|
||||
|
|
@ -0,0 +1,258 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Aturan;
|
||||
use App\Models\Penyakit;
|
||||
use App\Models\Gejala;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
// Controller ini digunakan untuk mengelola basis aturan
|
||||
// antara penyakit dan gejala pada metode
|
||||
// Forward Chaining + Certainty Factor.
|
||||
class AdminAturanController extends Controller
|
||||
{
|
||||
// =====================================================
|
||||
// TAMPILKAN TABEL MATRIX ATURAN
|
||||
// =====================================================
|
||||
// Menampilkan relasi penyakit dan gejala
|
||||
// dalam bentuk tabel matrix.
|
||||
public function index()
|
||||
{
|
||||
// Ambil semua penyakit
|
||||
$penyakit = Penyakit::all();
|
||||
|
||||
// Ambil semua gejala
|
||||
$gejala = Gejala::all();
|
||||
|
||||
// Ambil semua aturan
|
||||
$aturan = Aturan::all();
|
||||
|
||||
// Mapping aturan:
|
||||
// penyakit_id => [gejala_id => cf_pakar]
|
||||
$aturanMap = [];
|
||||
|
||||
foreach ($aturan as $a) {
|
||||
|
||||
$aturanMap[$a->penyakit_id][$a->gejala_id]
|
||||
= $a->cf_pakar;
|
||||
|
||||
}
|
||||
|
||||
return view('admin.aturan.index', compact(
|
||||
'penyakit',
|
||||
'gejala',
|
||||
'aturanMap'
|
||||
));
|
||||
}
|
||||
|
||||
|
||||
// =====================================================
|
||||
// FORM TAMBAH ATURAN
|
||||
// =====================================================
|
||||
// Menampilkan halaman tambah aturan.
|
||||
public function create()
|
||||
{
|
||||
return view('admin.aturan.create', [
|
||||
|
||||
// Dropdown penyakit
|
||||
'penyakit' => Penyakit::all(),
|
||||
|
||||
// List gejala
|
||||
'gejala' => Gejala::all(),
|
||||
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
// =====================================================
|
||||
// SIMPAN ATURAN
|
||||
// =====================================================
|
||||
// Menyimpan relasi penyakit-gejala beserta CF pakar.
|
||||
public function store(Request $request)
|
||||
{
|
||||
// ==========================
|
||||
// VALIDASI
|
||||
// ==========================
|
||||
$request->validate([
|
||||
|
||||
'penyakit_id' => 'required|exists:penyakit,id',
|
||||
|
||||
'gejala_id' => 'nullable|array',
|
||||
|
||||
'cf_pakar' => 'nullable|array'
|
||||
|
||||
]);
|
||||
|
||||
// ==========================
|
||||
// SIMPAN DATA
|
||||
// ==========================
|
||||
DB::transaction(function () use ($request) {
|
||||
|
||||
// Hapus aturan lama
|
||||
// supaya tidak duplikat
|
||||
Aturan::where(
|
||||
'penyakit_id',
|
||||
$request->penyakit_id
|
||||
)->delete();
|
||||
|
||||
// Simpan aturan baru
|
||||
foreach ($request->gejala_id ?? [] as $gid) {
|
||||
|
||||
Aturan::create([
|
||||
|
||||
// Penyakit
|
||||
'penyakit_id' => $request->penyakit_id,
|
||||
|
||||
// Gejala
|
||||
'gejala_id' => $gid,
|
||||
|
||||
// Nilai Certainty Factor Pakar
|
||||
'cf_pakar' => $request->cf_pakar[$gid] ?? 0
|
||||
|
||||
]);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Redirect kembali
|
||||
return redirect()
|
||||
->route('admin.aturan.index')
|
||||
->with(
|
||||
'success',
|
||||
'Aturan berhasil disimpan'
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// =====================================================
|
||||
// FORM EDIT ATURAN
|
||||
// =====================================================
|
||||
// Menampilkan aturan berdasarkan penyakit.
|
||||
public function edit($penyakitId)
|
||||
{
|
||||
// ==========================
|
||||
// GEJALA TERPILIH
|
||||
// ==========================
|
||||
$selectedGejala = Aturan::where(
|
||||
'penyakit_id',
|
||||
$penyakitId
|
||||
)
|
||||
->pluck('gejala_id')
|
||||
->toArray();
|
||||
|
||||
// ==========================
|
||||
// NILAI CF PAKAR
|
||||
// ==========================
|
||||
// Format:
|
||||
// gejala_id => cf_pakar
|
||||
$cfPakar = Aturan::where(
|
||||
'penyakit_id',
|
||||
$penyakitId
|
||||
)
|
||||
->pluck('cf_pakar', 'gejala_id')
|
||||
->toArray();
|
||||
|
||||
return view('admin.aturan.edit', [
|
||||
|
||||
// Semua penyakit
|
||||
'penyakit' => Penyakit::all(),
|
||||
|
||||
// Semua gejala
|
||||
'gejala' => Gejala::all(),
|
||||
|
||||
// Penyakit yang sedang diedit
|
||||
'penyakitId' => $penyakitId,
|
||||
|
||||
// Gejala yang aktif
|
||||
'selectedGejala' => $selectedGejala,
|
||||
|
||||
// Penyakit terpilih
|
||||
'selectedPenyakit' => $penyakitId,
|
||||
|
||||
// Nilai CF Pakar
|
||||
'cfPakar' => $cfPakar
|
||||
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
// =====================================================
|
||||
// UPDATE ATURAN
|
||||
// =====================================================
|
||||
// Mengupdate relasi penyakit dan gejala.
|
||||
public function update(Request $request, $penyakitId)
|
||||
{
|
||||
// ==========================
|
||||
// VALIDASI
|
||||
// ==========================
|
||||
$request->validate([
|
||||
|
||||
'gejala_id' => 'nullable|array',
|
||||
|
||||
'cf_pakar' => 'nullable|array'
|
||||
|
||||
]);
|
||||
|
||||
DB::transaction(function () use (
|
||||
$request,
|
||||
$penyakitId
|
||||
) {
|
||||
|
||||
// ==========================
|
||||
// HAPUS RULE LAMA
|
||||
// ==========================
|
||||
Aturan::where(
|
||||
'penyakit_id',
|
||||
$penyakitId
|
||||
)->delete();
|
||||
|
||||
// ==========================
|
||||
// SIMPAN RULE BARU
|
||||
// ==========================
|
||||
foreach ($request->gejala_id ?? [] as $gid) {
|
||||
|
||||
Aturan::create([
|
||||
|
||||
// Penyakit
|
||||
'penyakit_id' => $penyakitId,
|
||||
|
||||
// Gejala
|
||||
'gejala_id' => $gid,
|
||||
|
||||
// CF Pakar
|
||||
'cf_pakar' => $request->cf_pakar[$gid] ?? 0
|
||||
|
||||
]);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
return redirect()
|
||||
->route('admin.aturan.index')
|
||||
->with(
|
||||
'success',
|
||||
'Aturan berhasil diperbarui'
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// =====================================================
|
||||
// HAPUS SEMUA ATURAN PER PENYAKIT
|
||||
// =====================================================
|
||||
public function deleteByPenyakit($penyakitId)
|
||||
{
|
||||
// Hapus seluruh aturan penyakit
|
||||
Aturan::where(
|
||||
'penyakit_id',
|
||||
$penyakitId
|
||||
)->delete();
|
||||
|
||||
return back()->with(
|
||||
'success',
|
||||
'Aturan berhasil dihapus'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Diagnosa;
|
||||
use App\Models\User;
|
||||
use App\Models\Penyakit;
|
||||
use App\Models\Gejala;
|
||||
|
||||
// Controller ini digunakan untuk mengelola halaman Dashboard Admin
|
||||
// yang menampilkan statistik sistem dan riwayat diagnosa pengguna.
|
||||
class AdminDashboardController extends Controller
|
||||
{
|
||||
public function index(Request $request)
|
||||
{
|
||||
// Mengambil nilai pencarian dari input (jika ada)
|
||||
$search = $request->search;
|
||||
|
||||
// Mengambil data riwayat diagnosa beserta relasinya
|
||||
$riwayat = Diagnosa::with([
|
||||
'pengguna', // relasi ke pengguna yang melakukan diagnosa
|
||||
'penyakit', // relasi ke hasil penyakit
|
||||
'detailDiagnosa.gejala' // relasi ke gejala yang dipilih
|
||||
])
|
||||
// Jika ada keyword pencarian, filter berdasarkan nama pengguna
|
||||
->when($search, function ($query) use ($search) {
|
||||
$query->whereHas('pengguna', function ($q) use ($search) {
|
||||
$q->where('nama', 'like', '%' . $search . '%');
|
||||
});
|
||||
})
|
||||
// Urutkan berdasarkan tanggal terbaru
|
||||
->orderBy('tanggal', 'desc')
|
||||
->paginate(10) // ⬅️ Menampilkan 10 data per halaman (pagination)
|
||||
->withQueryString(); // ⬅️ Agar parameter search tetap terbawa saat pindah halaman
|
||||
|
||||
// Mengirim data ke view dashboard admin
|
||||
return view('admin.dashboard', [
|
||||
'total_pengguna' => User::count(), // jumlah seluruh pengguna
|
||||
'total_penyakit' => Penyakit::count(), // jumlah data penyakit
|
||||
'total_gejala' => Gejala::count(), // jumlah data gejala
|
||||
'total_diagnosa' => Diagnosa::count(), // jumlah seluruh diagnosa
|
||||
'riwayat' => $riwayat, // data riwayat diagnosa (paginated)
|
||||
'search' => $search, // keyword pencarian
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin; // Menentukan namespace controller berada di folder Admin
|
||||
|
||||
use App\Http\Controllers\Controller; // Memanggil class dasar Controller Laravel
|
||||
use App\Models\Diagnosa; // Model tabel diagnosa (data utama hasil diagnosa)
|
||||
use App\Models\DetailDiagnosa; // Model tabel detail_diagnosa (relasi gejala yang dipilih)
|
||||
|
||||
class AdminDiagnosaController extends Controller
|
||||
{
|
||||
// Method destroy digunakan untuk menghapus data diagnosa berdasarkan ID
|
||||
public function destroy($id)
|
||||
{
|
||||
// Menghapus seluruh data detail diagnosa yang berelasi dengan diagnosa ini
|
||||
// Hal ini penting karena tabel detail_diagnosa memiliki foreign key diagnosa_id
|
||||
// Jika tidak dihapus dulu, akan terjadi error constraint di database
|
||||
DetailDiagnosa::where('diagnosa_id', $id)->delete();
|
||||
|
||||
// Menghapus data diagnosa utama berdasarkan ID
|
||||
// findOrFail akan menampilkan error jika ID tidak ditemukan
|
||||
Diagnosa::findOrFail($id)->delete();
|
||||
|
||||
// Mengembalikan ke halaman sebelumnya (dashboard admin)
|
||||
// sekaligus mengirim pesan sukses (flash message)
|
||||
return back()->with('success', 'Data diagnosa berhasil dihapus');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Gejala;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
// Controller ini digunakan untuk mengelola data gejala (CRUD)
|
||||
// yang akan menjadi fakta awal dalam proses diagnosa Forward Chaining.
|
||||
class AdminGejalaController extends Controller
|
||||
{
|
||||
/**
|
||||
* Menampilkan daftar data gejala
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
// Mengambil semua data gejala
|
||||
// lalu diurutkan berdasarkan ANGKA setelah huruf "G"
|
||||
// Contoh: G1, G2, G10 → akan dibaca sebagai 1,2,10 (bukan string)
|
||||
$gejala = Gejala::orderByRaw('CAST(SUBSTRING(kode, 2) AS UNSIGNED) ASC')->get();
|
||||
|
||||
// Mengirim data ke halaman index gejala
|
||||
return view('admin.gejala.index', compact('gejala'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Menampilkan form tambah gejala
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
// Menampilkan halaman form input gejala baru
|
||||
return view('admin.gejala.create');
|
||||
}
|
||||
|
||||
/**
|
||||
* Menyimpan data gejala baru
|
||||
*/
|
||||
public function store(Request $request)
|
||||
{
|
||||
// Validasi input
|
||||
$request->validate([
|
||||
'kode' => 'required|unique:gejala,kode', // kode harus unik
|
||||
'nama' => 'required', // nama gejala wajib diisi
|
||||
]);
|
||||
|
||||
// Menyimpan data gejala ke database
|
||||
Gejala::create([
|
||||
'kode' => $request->kode,
|
||||
'nama' => $request->nama,
|
||||
]);
|
||||
|
||||
// Redirect kembali ke halaman daftar gejala dengan pesan sukses
|
||||
return redirect()
|
||||
->route('admin.gejala.index')
|
||||
->with('success', 'Data gejala berhasil ditambahkan.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Menampilkan form edit gejala
|
||||
*/
|
||||
public function edit(Gejala $gejala)
|
||||
{
|
||||
// Mengirim data gejala yang dipilih ke halaman edit
|
||||
return view('admin.gejala.edit', compact('gejala'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Memperbarui data gejala
|
||||
*/
|
||||
public function update(Request $request, Gejala $gejala)
|
||||
{
|
||||
// Validasi saat update (kode tetap harus unik kecuali milik sendiri)
|
||||
$request->validate([
|
||||
'kode' => 'required|unique:gejala,kode,' . $gejala->id,
|
||||
'nama' => 'required',
|
||||
]);
|
||||
|
||||
// Update data gejala
|
||||
$gejala->update([
|
||||
'kode' => $request->kode,
|
||||
'nama' => $request->nama,
|
||||
]);
|
||||
|
||||
// Redirect kembali dengan pesan sukses
|
||||
return redirect()
|
||||
->route('admin.gejala.index')
|
||||
->with('success', 'Data gejala berhasil diperbarui.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Menghapus data gejala
|
||||
*/
|
||||
public function destroy(Gejala $gejala)
|
||||
{
|
||||
// Menghapus data gejala dari database
|
||||
$gejala->delete();
|
||||
|
||||
// Redirect kembali dengan pesan sukses
|
||||
return redirect()
|
||||
->route('admin.gejala.index')
|
||||
->with('success', 'Data gejala berhasil dihapus.');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Penyakit;
|
||||
|
||||
// Controller ini digunakan untuk mengelola data penyakit (CRUD)
|
||||
// Penyakit merupakan hasil akhir (kesimpulan) dari proses Forward Chaining.
|
||||
class AdminPenyakitController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
// Mengambil semua data penyakit dan diurutkan berdasarkan kode (P01, P02, dst)
|
||||
$penyakit = Penyakit::orderBy('kode', 'asc')->get();
|
||||
|
||||
// Mengirim data ke halaman daftar penyakit
|
||||
return view('admin.penyakit.index', compact('penyakit'));
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
// Menampilkan form tambah data penyakit
|
||||
return view('admin.penyakit.create');
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
// Validasi input sebelum disimpan
|
||||
$request->validate([
|
||||
'kode' => 'required|unique:penyakit,kode', // kode harus unik
|
||||
'nama' => 'required', // nama penyakit wajib diisi
|
||||
'deskripsi' => 'required', // deskripsi penyakit wajib diisi
|
||||
'solusi' => 'required', // solusi penanganan wajib diisi
|
||||
]);
|
||||
|
||||
// Menyimpan data penyakit ke database
|
||||
Penyakit::create([
|
||||
'kode' => $request->kode,
|
||||
'nama' => $request->nama,
|
||||
'deskripsi' => $request->deskripsi,
|
||||
'solusi' => $request->solusi,
|
||||
]);
|
||||
|
||||
// Redirect ke halaman daftar penyakit dengan pesan sukses
|
||||
return redirect()
|
||||
->route('admin.penyakit.index')
|
||||
->with('success', 'Data penyakit berhasil ditambahkan');
|
||||
}
|
||||
|
||||
public function edit(Penyakit $penyakit)
|
||||
{
|
||||
// Menampilkan form edit dengan data penyakit yang dipilih
|
||||
return view('admin.penyakit.edit', compact('penyakit'));
|
||||
}
|
||||
|
||||
public function update(Request $request, Penyakit $penyakit)
|
||||
{
|
||||
// Validasi saat update (kode tetap unik kecuali milik data ini)
|
||||
$request->validate([
|
||||
'kode' => 'required|unique:penyakit,kode,' . $penyakit->id,
|
||||
'nama' => 'required',
|
||||
'deskripsi' => 'required',
|
||||
'solusi' => 'required',
|
||||
]);
|
||||
|
||||
// Memperbarui data penyakit
|
||||
$penyakit->update([
|
||||
'kode' => $request->kode,
|
||||
'nama' => $request->nama,
|
||||
'deskripsi' => $request->deskripsi,
|
||||
'solusi' => $request->solusi,
|
||||
]);
|
||||
|
||||
// Redirect kembali dengan pesan sukses
|
||||
return redirect()
|
||||
->route('admin.penyakit.index')
|
||||
->with('success', 'Data penyakit berhasil diperbarui');
|
||||
}
|
||||
|
||||
public function destroy(Penyakit $penyakit)
|
||||
{
|
||||
// Menghapus data penyakit dari database
|
||||
$penyakit->delete();
|
||||
|
||||
// Kembali ke halaman sebelumnya dengan pesan sukses
|
||||
return back()->with('success', 'Data penyakit berhasil dihapus');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class LoginController extends Controller
|
||||
{
|
||||
/**
|
||||
* Menampilkan halaman login.
|
||||
*/
|
||||
public function showLoginForm()
|
||||
{
|
||||
return view('auth.login');
|
||||
}
|
||||
|
||||
/**
|
||||
* Proses login user.
|
||||
*/
|
||||
public function login(Request $request)
|
||||
{
|
||||
// 🔍 Validasi input
|
||||
$request->validate([
|
||||
'email' => 'required|email',
|
||||
'password' => 'required|string|min:6',
|
||||
], [
|
||||
'email.required' => 'Email wajib diisi.',
|
||||
'email.email' => 'Format email tidak valid.',
|
||||
'password.required' => 'Password wajib diisi.',
|
||||
'password.min' => 'Password minimal 6 karakter.',
|
||||
]);
|
||||
|
||||
$credentials = $request->only('email', 'password');
|
||||
|
||||
// 🔐 Coba autentikasi
|
||||
if (Auth::attempt($credentials, $request->boolean('remember'))) {
|
||||
$request->session()->regenerate();
|
||||
|
||||
return redirect()->intended(route('home'))->with('success', 'Selamat datang kembali, ' . Auth::user()->name . ' 👋');
|
||||
}
|
||||
|
||||
// ❌ Jika gagal login
|
||||
return back()->with('error', 'Email atau password salah.')->withInput($request->only('email'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Logout user.
|
||||
*/
|
||||
public function logout(Request $request)
|
||||
{
|
||||
Auth::logout();
|
||||
|
||||
$request->session()->invalidate();
|
||||
$request->session()->regenerateToken();
|
||||
|
||||
return redirect()->route('login')->with('success', 'Anda telah logout dengan aman. 👋');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\User;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class RegisterController extends Controller
|
||||
{
|
||||
/**
|
||||
* Menampilkan form registrasi.
|
||||
*/
|
||||
public function showRegistrationForm()
|
||||
{
|
||||
return view('auth.register');
|
||||
}
|
||||
|
||||
/**
|
||||
* Proses data registrasi.
|
||||
*/
|
||||
public function register(Request $request)
|
||||
{
|
||||
// 🔍 Validasi input
|
||||
$request->validate([
|
||||
'name' => 'required|string|max:255',
|
||||
'email' => 'required|email|unique:users,email',
|
||||
'password' => 'required|string|min:6|confirmed',
|
||||
], [
|
||||
'name.required' => 'Nama wajib diisi.',
|
||||
'email.required' => 'Email wajib diisi.',
|
||||
'email.unique' => 'Email sudah digunakan.',
|
||||
'password.required' => 'Password wajib diisi.',
|
||||
'password.confirmed' => 'Konfirmasi password tidak sesuai.',
|
||||
]);
|
||||
|
||||
// 🧩 Simpan user baru
|
||||
$user = User::create([
|
||||
'name' => $request->name,
|
||||
'email' => $request->email,
|
||||
// Tetap gunakan Hash::make() meskipun ada cast,
|
||||
// agar tetap aman dan eksplisit
|
||||
'password' => Hash::make($request->password),
|
||||
]);
|
||||
|
||||
// 🔐 Login otomatis setelah registrasi
|
||||
Auth::login($user);
|
||||
|
||||
// 🚀 Redirect ke halaman home dengan notifikasi
|
||||
return redirect()->route('home')->with('success', 'Registrasi berhasil! Selamat datang, ' . $user->name . ' 🎉');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Pengguna;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class AuthController extends Controller
|
||||
{
|
||||
// ===================== FORM LOGIN =====================
|
||||
public function loginForm()
|
||||
{
|
||||
return view('auth.login');
|
||||
}
|
||||
|
||||
// ===================== PROSES LOGIN =====================
|
||||
public function login(Request $request)
|
||||
{
|
||||
// Validasi input
|
||||
$request->validate([
|
||||
'email' => 'required|email',
|
||||
'password' => 'required'
|
||||
]);
|
||||
|
||||
// Coba login
|
||||
if (Auth::attempt([
|
||||
'email' => $request->email,
|
||||
'password' => $request->password
|
||||
])) {
|
||||
|
||||
// Regenerate session (keamanan)
|
||||
$request->session()->regenerate();
|
||||
|
||||
// Ambil data user yang login
|
||||
$user = Auth::user();
|
||||
|
||||
// 🔥 CEK PERAN (INI KUNCI PEMBEDA ADMIN & PETANI)
|
||||
if ($user->peran === 'admin') {
|
||||
return redirect('/admin/dashboard')
|
||||
->with('success', 'Selamat datang Admin 👋');
|
||||
}
|
||||
|
||||
// Jika petani
|
||||
return redirect()->route('home')
|
||||
->with('success', 'Selamat datang, ' . $user->nama . ' 👋');
|
||||
}
|
||||
|
||||
// Jika login gagal
|
||||
return back()->with('error', 'Email atau password salah');
|
||||
}
|
||||
|
||||
// ===================== FORM REGISTER =====================
|
||||
public function registerForm()
|
||||
{
|
||||
return view('auth.register');
|
||||
}
|
||||
|
||||
// ===================== PROSES REGISTER =====================
|
||||
public function register(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'name' => 'required',
|
||||
'email' => 'required|unique:pengguna',
|
||||
'password' => 'required|confirmed|min:6'
|
||||
]);
|
||||
|
||||
Pengguna::create([
|
||||
'nama' => $request->name,
|
||||
'email' => $request->email,
|
||||
'kata_sandi' => Hash::make($request->password),
|
||||
'peran' => 'petani' // default petani
|
||||
]);
|
||||
|
||||
return redirect()->route('login')
|
||||
->with('success', 'Akun berhasil dibuat');
|
||||
}
|
||||
|
||||
// ===================== LOGOUT =====================
|
||||
public function logout()
|
||||
{
|
||||
Auth::logout();
|
||||
return redirect()->route('login');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
abstract class Controller
|
||||
{
|
||||
//
|
||||
}
|
||||
|
|
@ -0,0 +1,169 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use App\Models\Gejala;
|
||||
use App\Models\Penyakit;
|
||||
use App\Models\Aturan;
|
||||
use App\Models\Diagnosa;
|
||||
use App\Models\DetailDiagnosa;
|
||||
|
||||
class DiagnosisController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$gejala = Gejala::all();
|
||||
return view('user.diagnosis', compact('gejala'));
|
||||
}
|
||||
|
||||
public function proses(Request $request)
|
||||
{
|
||||
// =====================================================
|
||||
// REVISI 2 & 3: Minimal 3 gejala + peringatan
|
||||
// =====================================================
|
||||
$request->validate([
|
||||
'gejala' => 'required|array|min:3',
|
||||
'gejala.*' => 'string'
|
||||
], [
|
||||
'gejala.min' => '⚠️ PERINGATAN: Anda harus memilih minimal 3 gejala untuk melakukan diagnosis sesuai dengan rule base yang telah ditetapkan pakar.'
|
||||
]);
|
||||
|
||||
$kodeGejalaDipilih = $request->gejala;
|
||||
$cfUser = $request->cf_user;
|
||||
|
||||
$gejalaDipilih = Gejala::whereIn('kode', $kodeGejalaDipilih)->get();
|
||||
|
||||
if ($gejalaDipilih->count() == 0) {
|
||||
return view('user.hasil', [
|
||||
'hasil' => null,
|
||||
'pesan' => 'Gejala tidak ditemukan.',
|
||||
'gejalaDipilih' => collect()
|
||||
]);
|
||||
}
|
||||
|
||||
$gejalaIds = $gejalaDipilih->pluck('id')->toArray();
|
||||
|
||||
// =====================================================
|
||||
// AMBIL SEMUA ATURAN
|
||||
// =====================================================
|
||||
$semuaAturan = Aturan::all();
|
||||
|
||||
$aturanPerPenyakit = [];
|
||||
foreach ($semuaAturan as $aturan) {
|
||||
$aturanPerPenyakit[$aturan->penyakit_id][] = $aturan->gejala_id;
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
// REVISI 1: AND LOGIC - Rule hanya aktif jika SEMUA gejala terpenuhi
|
||||
// =====================================================
|
||||
$hasil = null;
|
||||
$nilaiTertinggi = 0;
|
||||
|
||||
foreach ($aturanPerPenyakit as $penyakitId => $gejalaRequired) {
|
||||
|
||||
// CEK APAKAH SEMUA GEJALA YANG DIBUTUHKAN ADA
|
||||
$semuaGejalaTerpenuhi = true;
|
||||
|
||||
foreach ($gejalaRequired as $gejalaId) {
|
||||
if (!in_array($gejalaId, $gejalaIds)) {
|
||||
$semuaGejalaTerpenuhi = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
// HANYA PROSES JIKA SEMUA GEJALA TERPENUHI (RULE AKTIF)
|
||||
// JIKA TIDAK, RULE DIABAIKAN (TIDAK DIHITUNG CF-NYA)
|
||||
// =====================================================
|
||||
if ($semuaGejalaTerpenuhi) {
|
||||
$cfGabungan = 0;
|
||||
|
||||
foreach ($gejalaRequired as $gejalaId) {
|
||||
$aturan = Aturan::where('penyakit_id', $penyakitId)
|
||||
->where('gejala_id', $gejalaId)
|
||||
->first();
|
||||
|
||||
if ($aturan) {
|
||||
$kodeGejala = Gejala::find($gejalaId)->kode;
|
||||
$cfUserValue = isset($cfUser[$kodeGejala]) ? (float) $cfUser[$kodeGejala] : 0;
|
||||
$cf = $aturan->cf_pakar * $cfUserValue;
|
||||
|
||||
if ($cfGabungan == 0) {
|
||||
$cfGabungan = $cf;
|
||||
} else {
|
||||
$cfGabungan = $cfGabungan + ($cf * (1 - $cfGabungan));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$nilai = $cfGabungan * 100;
|
||||
|
||||
if ($nilai > $nilaiTertinggi) {
|
||||
$nilaiTertinggi = $nilai;
|
||||
$hasil = Penyakit::find($penyakitId);
|
||||
}
|
||||
}
|
||||
// =====================================================
|
||||
// JIKA TIDAK TERPENUHI: rule DIABAIKAN (tidak ada perhitungan)
|
||||
// =====================================================
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
// HASIL DIAGNOSA
|
||||
// =====================================================
|
||||
if ($hasil == null) {
|
||||
return view('user.hasil', [
|
||||
'hasil' => null,
|
||||
'pesan' => '⚠️ Tidak ditemukan penyakit yang sesuai. Pastikan gejala yang Anda pilih MEMENUHI SEMUA KRITERIA penyakit yang telah ditetapkan pakar. Contoh: Untuk penyakit Bulai, Anda harus memilih G1, G2, G3, G4 secara lengkap.',
|
||||
'gejalaDipilih' => $gejalaDipilih
|
||||
]);
|
||||
}
|
||||
|
||||
return view('user.hasil', [
|
||||
'hasil' => $hasil,
|
||||
'gejalaDipilih' => $gejalaDipilih,
|
||||
'persentase' => $nilaiTertinggi
|
||||
]);
|
||||
}
|
||||
|
||||
public function simpan(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'penyakit_id' => 'required|integer|exists:penyakit,id',
|
||||
'cf_hasil' => 'required|numeric',
|
||||
'gejala_id' => 'required|array|min:3',
|
||||
'gejala_id.*' => 'integer|exists:gejala,id',
|
||||
'cf_user' => 'required|array'
|
||||
]);
|
||||
|
||||
$diagnosa = Diagnosa::create([
|
||||
'pengguna_id' => Auth::id(),
|
||||
'penyakit_id' => $request->penyakit_id,
|
||||
'cf_hasil' => $request->cf_hasil,
|
||||
'tanggal' => now()
|
||||
]);
|
||||
|
||||
foreach ($request->gejala_id as $gid) {
|
||||
DetailDiagnosa::create([
|
||||
'diagnosa_id' => $diagnosa->id,
|
||||
'gejala_id' => $gid,
|
||||
'cf_user' => $request->cf_user[$gid] ?? 0
|
||||
]);
|
||||
}
|
||||
|
||||
return redirect()->route('riwayat')
|
||||
->with('success', 'Diagnosa berhasil disimpan.');
|
||||
}
|
||||
|
||||
public function riwayat()
|
||||
{
|
||||
$riwayat = Diagnosa::where('pengguna_id', Auth::id())
|
||||
->with(['penyakit', 'detailDiagnosa.gejala'])
|
||||
->orderBy('tanggal', 'desc')
|
||||
->get();
|
||||
|
||||
return view('user.riwayat', compact('riwayat'));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Penyakit;
|
||||
|
||||
class PenyakitController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$penyakit = Penyakit::all();
|
||||
return view('admin.penyakit', compact('penyakit'));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use App\Models\Diagnosa;
|
||||
|
||||
class RiwayatController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$riwayat = Diagnosa::where('pengguna_id', Auth::id())
|
||||
->with([
|
||||
'penyakit',
|
||||
'detailDiagnosa.gejala' // Relasi yang sudah diperbaiki
|
||||
])
|
||||
->orderBy('tanggal', 'desc')
|
||||
->get();
|
||||
|
||||
return view('user.riwayat', compact('riwayat'));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TentangController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
return view('user.tentang');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class IsAdmin
|
||||
{
|
||||
public function handle(Request $request, Closure $next)
|
||||
{
|
||||
if (auth()->check() && auth()->user()->peran === 'admin') {
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
abort(403, 'Akses hanya untuk Admin');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
// Model Aturan merepresentasikan tabel 'aturan' di database
|
||||
// Tabel ini digunakan sebagai basis pengetahuan
|
||||
// pada sistem pakar diagnosis penyakit jagung hibrida
|
||||
// menggunakan metode Forward Chaining dan Certainty Factor.
|
||||
class Aturan extends Model
|
||||
{
|
||||
// =====================================================
|
||||
// NAMA TABEL
|
||||
// =====================================================
|
||||
protected $table = 'aturan';
|
||||
|
||||
// =====================================================
|
||||
// NONAKTIFKAN TIMESTAMP
|
||||
// =====================================================
|
||||
// Karena tabel aturan tidak menggunakan
|
||||
// created_at dan updated_at
|
||||
public $timestamps = false;
|
||||
|
||||
// =====================================================
|
||||
// FIELD YANG BOLEH DIISI
|
||||
// =====================================================
|
||||
// penyakit_id : ID penyakit
|
||||
// gejala_id : ID gejala
|
||||
// cf_pakar : Nilai keyakinan pakar
|
||||
protected $fillable = [
|
||||
|
||||
'penyakit_id',
|
||||
|
||||
'gejala_id',
|
||||
|
||||
'cf_pakar'
|
||||
|
||||
];
|
||||
|
||||
// =====================================================
|
||||
// RELASI KE PENYAKIT
|
||||
// =====================================================
|
||||
// Setiap aturan dimiliki oleh satu penyakit
|
||||
public function penyakit()
|
||||
{
|
||||
return $this->belongsTo(
|
||||
Penyakit::class,
|
||||
'penyakit_id'
|
||||
);
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
// RELASI KE GEJALA
|
||||
// =====================================================
|
||||
// Setiap aturan terhubung dengan satu gejala
|
||||
public function gejala()
|
||||
{
|
||||
return $this->belongsTo(
|
||||
Gejala::class,
|
||||
'gejala_id'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
// Model DetailDiagnosa merepresentasikan tabel 'detail_diagnosa'
|
||||
// Tabel ini digunakan untuk menyimpan data gejala yang dipilih
|
||||
// oleh user pada saat melakukan proses diagnosa.
|
||||
class DetailDiagnosa extends Model
|
||||
{
|
||||
// Menentukan nama tabel yang digunakan oleh model ini
|
||||
protected $table = 'detail_diagnosa';
|
||||
|
||||
// Field yang boleh diisi secara mass assignment
|
||||
// diagnosa_id : ID dari proses diagnosa
|
||||
// gejala_id : ID gejala yang dipilih user
|
||||
// cf_user : Nilai keyakinan user terhadap gejala
|
||||
protected $fillable = [
|
||||
|
||||
'diagnosa_id',
|
||||
'gejala_id',
|
||||
'cf_user'
|
||||
|
||||
];
|
||||
|
||||
// Menonaktifkan timestamps karena tabel tidak memiliki
|
||||
// kolom created_at dan updated_at
|
||||
public $timestamps = false;
|
||||
|
||||
// ===============================
|
||||
// ✅ RELASI KE GEJALA
|
||||
// ===============================
|
||||
// Setiap detail diagnosa terhubung dengan satu gejala
|
||||
// Digunakan untuk mengambil informasi gejala yang dipilih user
|
||||
public function gejala()
|
||||
{
|
||||
return $this->belongsTo(Gejala::class, 'gejala_id');
|
||||
}
|
||||
|
||||
// ===============================
|
||||
// ✅ RELASI KE DIAGNOSA
|
||||
// ===============================
|
||||
// Setiap detail diagnosa merupakan bagian dari satu diagnosa
|
||||
// (satu proses diagnosa bisa memiliki banyak gejala)
|
||||
public function diagnosa()
|
||||
{
|
||||
return $this->belongsTo(Diagnosa::class, 'diagnosa_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
// Model Diagnosa merepresentasikan tabel 'diagnosa'
|
||||
// Tabel ini menyimpan hasil akhir proses diagnosa user,
|
||||
// yaitu penyakit yang terdeteksi berdasarkan gejala yang dipilih.
|
||||
class Diagnosa extends Model
|
||||
{
|
||||
// Menentukan nama tabel yang digunakan
|
||||
protected $table = 'diagnosa';
|
||||
|
||||
// Menonaktifkan timestamps karena tabel tidak memakai created_at & updated_at
|
||||
public $timestamps = false;
|
||||
|
||||
// Field yang boleh diisi (mass assignment)
|
||||
protected $fillable = [
|
||||
|
||||
'pengguna_id', // ID user yang melakukan diagnosa
|
||||
'penyakit_id', // ID penyakit hasil diagnosa
|
||||
|
||||
// Hasil Certainty Factor
|
||||
'cf_hasil',
|
||||
|
||||
'tanggal' // Waktu diagnosa dilakukan
|
||||
];
|
||||
|
||||
// ===============================
|
||||
// ✅ RELASI KE PENGGUNA
|
||||
// ===============================
|
||||
// Setiap diagnosa dimiliki oleh satu pengguna
|
||||
public function pengguna()
|
||||
{
|
||||
return $this->belongsTo(Pengguna::class, 'pengguna_id');
|
||||
}
|
||||
|
||||
// ===============================
|
||||
// ✅ RELASI KE TABEL PENYAKIT
|
||||
// ===============================
|
||||
// Menyimpan hasil penyakit dari proses Forward Chaining
|
||||
public function penyakit()
|
||||
{
|
||||
return $this->belongsTo(Penyakit::class, 'penyakit_id');
|
||||
}
|
||||
|
||||
// ===============================
|
||||
// ✅ RELASI KE DETAIL DIAGNOSA
|
||||
// ===============================
|
||||
// Satu diagnosa bisa memiliki banyak gejala yang dipilih user
|
||||
public function detailDiagnosa()
|
||||
{
|
||||
return $this->hasMany(DetailDiagnosa::class, 'diagnosa_id');
|
||||
}
|
||||
|
||||
// ===============================
|
||||
// ✅ ACCESSOR GEJALA STRING
|
||||
// ===============================
|
||||
// Mengubah daftar gejala yang dipilih menjadi teks (misal: G01, G02, G03)
|
||||
// Biasanya digunakan untuk ditampilkan di tabel riwayat diagnosa
|
||||
public function getGejalaStringAttribute()
|
||||
{
|
||||
// Jika relasi belum diload, maka load detailDiagnosa beserta gejalanya
|
||||
if (!$this->relationLoaded('detailDiagnosa')) {
|
||||
$this->load('detailDiagnosa.gejala');
|
||||
}
|
||||
|
||||
$gejalaKode = [];
|
||||
|
||||
// Mengambil kode gejala satu per satu
|
||||
foreach ($this->detailDiagnosa as $detail) {
|
||||
|
||||
if ($detail->gejala) {
|
||||
$gejalaKode[] = $detail->gejala->kode;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Menggabungkan menjadi string dipisahkan koma
|
||||
return implode(', ', $gejalaKode) ?: '-';
|
||||
}
|
||||
|
||||
// ===============================
|
||||
// ✅ ACCESSOR SOLUSI SINGKAT
|
||||
// ===============================
|
||||
// Menampilkan solusi penyakit dalam bentuk ringkasan
|
||||
public function getSolusiSingkatAttribute()
|
||||
{
|
||||
if ($this->penyakit && $this->penyakit->solusi) {
|
||||
|
||||
return Str::limit($this->penyakit->solusi, 100);
|
||||
|
||||
}
|
||||
|
||||
return '-';
|
||||
}
|
||||
|
||||
// ===============================
|
||||
// ✅ ACCESSOR FORMAT TANGGAL
|
||||
// ===============================
|
||||
// Mengubah format tanggal database menjadi format tampilan
|
||||
public function getTanggalFormatAttribute()
|
||||
{
|
||||
return \Carbon\Carbon::parse($this->tanggal)
|
||||
->format('d/m/Y H:i:s');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
// Model Gejala merepresentasikan tabel 'gejala'
|
||||
// Tabel ini menyimpan daftar gejala yang digunakan sebagai
|
||||
// fakta awal dalam proses diagnosa metode Forward Chaining.
|
||||
class Gejala extends Model
|
||||
{
|
||||
// Menentukan nama tabel yang digunakan oleh model ini
|
||||
protected $table = 'gejala';
|
||||
|
||||
// Menonaktifkan timestamps karena tabel tidak memiliki
|
||||
// kolom created_at dan updated_at
|
||||
public $timestamps = false;
|
||||
|
||||
// Field yang boleh diisi secara mass assignment
|
||||
protected $fillable = [
|
||||
'kode', // Kode gejala (contoh: G01, G02)
|
||||
'nama', // Nama atau deskripsi gejala
|
||||
];
|
||||
|
||||
// 🔗 Relasi ke tabel aturan
|
||||
// Satu gejala bisa muncul di banyak aturan
|
||||
// karena satu gejala dapat dimiliki oleh beberapa penyakit
|
||||
public function aturan()
|
||||
{
|
||||
return $this->hasMany(Aturan::class, 'gejala_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
|
||||
// Model Pengguna digunakan untuk merepresentasikan tabel 'pengguna'
|
||||
// Model ini juga digunakan untuk proses autentikasi (login/logout)
|
||||
// karena mewarisi class Authenticatable dari Laravel.
|
||||
class Pengguna extends Authenticatable
|
||||
{
|
||||
// Menentukan nama tabel yang digunakan
|
||||
protected $table = 'pengguna';
|
||||
|
||||
// Field yang boleh diisi saat proses registrasi atau penyimpanan data pengguna
|
||||
protected $fillable = [
|
||||
'nama', // Nama pengguna
|
||||
'email', // Email untuk login
|
||||
'kata_sandi', // Password yang sudah di-hash
|
||||
'peran' // Role pengguna (misal: admin / user)
|
||||
];
|
||||
|
||||
// Field yang disembunyikan saat data dikirim dalam bentuk array / JSON
|
||||
// Agar password tidak ikut tampil (keamanan sistem)
|
||||
protected $hidden = [
|
||||
'kata_sandi',
|
||||
];
|
||||
|
||||
// Method ini digunakan Laravel untuk mengambil password saat proses autentikasi
|
||||
// Karena di database menggunakan nama kolom 'kata_sandi',
|
||||
// bukan 'password' (default Laravel), maka perlu override method ini.
|
||||
public function getAuthPassword()
|
||||
{
|
||||
return $this->kata_sandi;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
// Model Penyakit merepresentasikan tabel 'penyakit'
|
||||
// Tabel ini berisi daftar penyakit yang menjadi tujuan akhir
|
||||
// dari proses penalaran metode Forward Chaining.
|
||||
class Penyakit extends Model
|
||||
{
|
||||
// Menentukan nama tabel yang digunakan oleh model ini
|
||||
protected $table = 'penyakit';
|
||||
|
||||
// Menonaktifkan timestamps karena tabel tidak memiliki
|
||||
// kolom created_at dan updated_at
|
||||
public $timestamps = false;
|
||||
|
||||
// Field yang boleh diisi secara mass assignment
|
||||
protected $fillable = [
|
||||
'kode', // Kode penyakit (contoh: P01, P02)
|
||||
'nama', // Nama penyakit
|
||||
'deskripsi', // Penjelasan atau informasi penyakit
|
||||
'solusi' // Solusi atau penanganan penyakit
|
||||
];
|
||||
|
||||
// 🔗 Relasi ke tabel aturan
|
||||
// Satu penyakit bisa memiliki banyak aturan (gejala-gejala)
|
||||
// yang menjadi dasar penentuan penyakit dalam sistem pakar
|
||||
public function aturan()
|
||||
{
|
||||
return $this->hasMany(Aturan::class, 'penyakit_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
// Model User digunakan oleh Laravel untuk sistem autentikasi bawaan
|
||||
// (login, session, middleware auth, dll).
|
||||
// Model ini tetap menggunakan tabel 'pengguna' agar sesuai dengan database yang sudah dibuat.
|
||||
class User extends Authenticatable
|
||||
{
|
||||
// Trait Notifiable digunakan jika ingin mengirim notifikasi
|
||||
// seperti email verifikasi, reset password, dll.
|
||||
use Notifiable;
|
||||
|
||||
// Menentukan bahwa model ini menggunakan tabel 'pengguna'
|
||||
// (karena default Laravel seharusnya tabel 'users')
|
||||
protected $table = 'pengguna'; // WAJIB
|
||||
|
||||
// Field yang boleh diisi saat registrasi atau penyimpanan data user
|
||||
protected $fillable = [
|
||||
'nama', // Nama pengguna
|
||||
'email', // Email untuk login
|
||||
'kata_sandi', // Password yang sudah di-hash
|
||||
'peran', // Role pengguna (admin / user)
|
||||
];
|
||||
|
||||
// Field yang disembunyikan agar tidak ikut tampil saat data dipanggil
|
||||
protected $hidden = [
|
||||
'kata_sandi',
|
||||
];
|
||||
|
||||
// Laravel secara default mencari kolom 'password'
|
||||
// Karena di database menggunakan 'kata_sandi',
|
||||
// maka method ini mengarahkan Laravel ke kolom yang benar.
|
||||
public function getAuthPassword()
|
||||
{
|
||||
return $this->kata_sandi;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*/
|
||||
public function register(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Symfony\Component\Console\Input\ArgvInput;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the command...
|
||||
/** @var Application $app */
|
||||
$app = require_once __DIR__.'/bootstrap/app.php';
|
||||
|
||||
$status = $app->handleCommand(new ArgvInput);
|
||||
|
||||
exit($status);
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Illuminate\Foundation\Configuration\Exceptions;
|
||||
use Illuminate\Foundation\Configuration\Middleware;
|
||||
|
||||
return Application::configure(basePath: dirname(__DIR__))
|
||||
->withRouting(
|
||||
web: __DIR__.'/../routes/web.php',
|
||||
commands: __DIR__.'/../routes/console.php',
|
||||
health: '/up',
|
||||
)
|
||||
->withMiddleware(function (Middleware $middleware): void {
|
||||
|
||||
$middleware->alias([
|
||||
'is_admin' => \App\Http\Middleware\IsAdmin::class,
|
||||
]);
|
||||
|
||||
})
|
||||
->withExceptions(function (Exceptions $exceptions): void {
|
||||
//
|
||||
})
|
||||
->create();
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
App\Providers\AppServiceProvider::class,
|
||||
];
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"$schema": "https://getcomposer.org/schema.json",
|
||||
"name": "laravel/laravel",
|
||||
"type": "project",
|
||||
"description": "The skeleton application for the Laravel framework.",
|
||||
"keywords": ["laravel", "framework"],
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^8.2",
|
||||
"laravel/framework": "^12.0",
|
||||
"laravel/tinker": "^2.10.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"fakerphp/faker": "^1.23",
|
||||
"laravel/pail": "^1.2.2",
|
||||
"laravel/pint": "^1.24",
|
||||
"laravel/sail": "^1.41",
|
||||
"mockery/mockery": "^1.6",
|
||||
"nunomaduro/collision": "^8.6",
|
||||
"phpunit/phpunit": "^11.5.3"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"Database\\Factories\\": "database/factories/",
|
||||
"Database\\Seeders\\": "database/seeders/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"setup": [
|
||||
"composer install",
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
||||
"@php artisan key:generate",
|
||||
"@php artisan migrate --force",
|
||||
"npm install",
|
||||
"npm run build"
|
||||
],
|
||||
"dev": [
|
||||
"Composer\\Config::disableProcessTimeout",
|
||||
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
|
||||
],
|
||||
"test": [
|
||||
"@php artisan config:clear --ansi",
|
||||
"@php artisan test"
|
||||
],
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php artisan package:discover --ansi"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||
],
|
||||
"post-root-package-install": [
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"@php artisan key:generate --ansi",
|
||||
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
||||
"@php artisan migrate --graceful --ansi"
|
||||
],
|
||||
"pre-package-uninstall": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"dont-discover": []
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true,
|
||||
"php-http/discovery": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true
|
||||
}
|
||||
|
|
@ -0,0 +1,126 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application, which will be used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| other UI elements where an application name needs to be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'name' => env('APP_NAME', 'Laravel'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "environment" your application is currently
|
||||
| running in. This may determine how you prefer to configure various
|
||||
| services the application utilizes. Set this in your ".env" file.
|
||||
|
|
||||
*/
|
||||
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Debug Mode
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When your application is in debug mode, detailed error messages with
|
||||
| stack traces will be shown on every error that occurs within your
|
||||
| application. If disabled, a simple generic error page is shown.
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This URL is used by the console to properly generate URLs when using
|
||||
| the Artisan command line tool. You should set this to the root of
|
||||
| the application so that it's available within Artisan commands.
|
||||
|
|
||||
*/
|
||||
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Timezone
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default timezone for your application, which
|
||||
| will be used by the PHP date and date-time functions. The timezone
|
||||
| is set to "UTC" by default as it is suitable for most use cases.
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => env('APP_TIMEZONE', 'Asia/Jakarta'), // ✅ UBAH INI
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Locale Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The application locale determines the default locale that will be used
|
||||
| by Laravel's translation / localization methods. This option can be
|
||||
| set to any locale for which you plan to have translation strings.
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => env('APP_LOCALE', 'id'), // ✅ UBAH INI
|
||||
|
||||
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'id'), // ✅ UBAH INI
|
||||
|
||||
'faker_locale' => env('APP_FAKER_LOCALE', 'id_ID'), // ✅ UBAH INI
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This key is utilized by Laravel's encryption services and should be set
|
||||
| to a random, 32 character string to ensure that all encrypted values
|
||||
| are secure. You should do this prior to deploying the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'cipher' => 'AES-256-CBC',
|
||||
|
||||
'key' => env('APP_KEY'),
|
||||
|
||||
'previous_keys' => [
|
||||
...array_filter(
|
||||
explode(',', (string) env('APP_PREVIOUS_KEYS', ''))
|
||||
),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Maintenance Mode Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options determine the driver used to determine and
|
||||
| manage Laravel's "maintenance mode" status. The "cache" driver will
|
||||
| allow maintenance mode to be controlled across multiple machines.
|
||||
|
|
||||
| Supported drivers: "file", "cache"
|
||||
|
|
||||
*/
|
||||
|
||||
'maintenance' => [
|
||||
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
||||
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,115 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Defaults
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default authentication "guard" and password
|
||||
| reset "broker" for your application. You may change these values
|
||||
| as required, but they're a perfect start for most applications.
|
||||
|
|
||||
*/
|
||||
|
||||
'defaults' => [
|
||||
'guard' => env('AUTH_GUARD', 'web'),
|
||||
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Next, you may define every authentication guard for your application.
|
||||
| Of course, a great default configuration has been defined for you
|
||||
| which utilizes session storage plus the Eloquent user provider.
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| Supported: "session"
|
||||
|
|
||||
*/
|
||||
|
||||
'guards' => [
|
||||
'web' => [
|
||||
'driver' => 'session',
|
||||
'provider' => 'users',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| If you have multiple user tables or models you may configure multiple
|
||||
| providers to represent the model / table. These providers may then
|
||||
| be assigned to any extra authentication guards you have defined.
|
||||
|
|
||||
| Supported: "database", "eloquent"
|
||||
|
|
||||
*/
|
||||
|
||||
'providers' => [
|
||||
'users' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => App\Models\Pengguna::class,
|
||||
],
|
||||
|
||||
// 'users' => [
|
||||
// 'driver' => 'database',
|
||||
// 'table' => 'users',
|
||||
// ],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Resetting Passwords
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options specify the behavior of Laravel's password
|
||||
| reset functionality, including the table utilized for token storage
|
||||
| and the user provider that is invoked to actually retrieve users.
|
||||
|
|
||||
| The expiry time is the number of minutes that each reset token will be
|
||||
| considered valid. This security feature keeps tokens short-lived so
|
||||
| they have less time to be guessed. You may change this as needed.
|
||||
|
|
||||
| The throttle setting is the number of seconds a user must wait before
|
||||
| generating more password reset tokens. This prevents the user from
|
||||
| quickly generating a very large amount of password reset tokens.
|
||||
|
|
||||
*/
|
||||
|
||||
'passwords' => [
|
||||
'users' => [
|
||||
'provider' => 'users',
|
||||
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Confirmation Timeout
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define the number of seconds before a password confirmation
|
||||
| window expires and users are asked to re-enter their password via the
|
||||
| confirmation screen. By default, the timeout lasts for three hours.
|
||||
|
|
||||
*/
|
||||
|
||||
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,108 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default cache store that will be used by the
|
||||
| framework. This connection is utilized if another isn't explicitly
|
||||
| specified when running a cache operation inside the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('CACHE_STORE', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Stores
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of the cache "stores" for your application as
|
||||
| well as their drivers. You may even define multiple stores for the
|
||||
| same cache driver to group types of items stored in your caches.
|
||||
|
|
||||
| Supported drivers: "array", "database", "file", "memcached",
|
||||
| "redis", "dynamodb", "octane", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'stores' => [
|
||||
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_CACHE_CONNECTION'),
|
||||
'table' => env('DB_CACHE_TABLE', 'cache'),
|
||||
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
|
||||
],
|
||||
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
'lock_path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
|
||||
'memcached' => [
|
||||
'driver' => 'memcached',
|
||||
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||
'sasl' => [
|
||||
env('MEMCACHED_USERNAME'),
|
||||
env('MEMCACHED_PASSWORD'),
|
||||
],
|
||||
'options' => [
|
||||
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||
],
|
||||
'servers' => [
|
||||
[
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'weight' => 100,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||
],
|
||||
|
||||
'octane' => [
|
||||
'driver' => 'octane',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Key Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
|
||||
| stores, there might be other applications using the same cache. For
|
||||
| that reason, you may prefix every cache key to avoid collisions.
|
||||
|
|
||||
*/
|
||||
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Database Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify which of the database connections below you wish
|
||||
| to use as your default connection for database operations. This is
|
||||
| the connection which will be utilized unless another connection
|
||||
| is explicitly specified when you execute a query / statement.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('DB_CONNECTION', 'sqlite'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Database Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below are all of the database connections defined for your application.
|
||||
| An example configuration is provided for each database system which
|
||||
| is supported by Laravel. You're free to add / remove connections.
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DB_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||
'busy_timeout' => null,
|
||||
'journal_mode' => null,
|
||||
'synchronous' => null,
|
||||
'transaction_mode' => 'DEFERRED',
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'mariadb' => [
|
||||
'driver' => 'mariadb',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'search_path' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
|
||||
'sqlsrv' => [
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
|
||||
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migration Repository Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This table keeps track of all the migrations that have already run for
|
||||
| your application. Using this information, we can determine which of
|
||||
| the migrations on disk haven't actually been run on the database.
|
||||
|
|
||||
*/
|
||||
|
||||
'migrations' => [
|
||||
'table' => 'migrations',
|
||||
'update_date_on_publish' => true,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Redis Databases
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Redis is an open source, fast, and advanced key-value store that also
|
||||
| provides a richer body of commands than a typical key-value system
|
||||
| such as Memcached. You may define your connection settings here.
|
||||
|
|
||||
*/
|
||||
|
||||
'redis' => [
|
||||
|
||||
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-database-'),
|
||||
'persistent' => env('REDIS_PERSISTENT', false),
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_DB', '0'),
|
||||
'max_retries' => env('REDIS_MAX_RETRIES', 3),
|
||||
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
|
||||
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
|
||||
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
|
||||
],
|
||||
|
||||
'cache' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_CACHE_DB', '1'),
|
||||
'max_retries' => env('REDIS_MAX_RETRIES', 3),
|
||||
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
|
||||
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
|
||||
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,80 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Filesystem Disk
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default filesystem disk that should be used
|
||||
| by the framework. The "local" disk, as well as a variety of cloud
|
||||
| based disks are available to your application for file storage.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('FILESYSTEM_DISK', 'local'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Filesystem Disks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below you may configure as many filesystem disks as necessary, and you
|
||||
| may even configure multiple disks for the same driver. Examples for
|
||||
| most supported storage drivers are configured here for reference.
|
||||
|
|
||||
| Supported drivers: "local", "ftp", "sftp", "s3"
|
||||
|
|
||||
*/
|
||||
|
||||
'disks' => [
|
||||
|
||||
'local' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/private'),
|
||||
'serve' => true,
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'visibility' => 'public',
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
'endpoint' => env('AWS_ENDPOINT'),
|
||||
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Symbolic Links
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the symbolic links that will be created when the
|
||||
| `storage:link` Artisan command is executed. The array keys should be
|
||||
| the locations of the links and the values should be their targets.
|
||||
|
|
||||
*/
|
||||
|
||||
'links' => [
|
||||
public_path('storage') => storage_path('app/public'),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,132 @@
|
|||
<?php
|
||||
|
||||
use Monolog\Handler\NullHandler;
|
||||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
use Monolog\Processor\PsrLogMessageProcessor;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default log channel that is utilized to write
|
||||
| messages to your logs. The value provided here should match one of
|
||||
| the channels present in the list of "channels" configured below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('LOG_CHANNEL', 'stack'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Deprecations Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the log channel that should be used to log warnings
|
||||
| regarding deprecated PHP and library features. This allows you to get
|
||||
| your application ready for upcoming major versions of dependencies.
|
||||
|
|
||||
*/
|
||||
|
||||
'deprecations' => [
|
||||
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
|
||||
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log Channels
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the log channels for your application. Laravel
|
||||
| utilizes the Monolog PHP logging library, which includes a variety
|
||||
| of powerful log handlers and formatters that you're free to use.
|
||||
|
|
||||
| Available drivers: "single", "daily", "slack", "syslog",
|
||||
| "errorlog", "monolog", "custom", "stack"
|
||||
|
|
||||
*/
|
||||
|
||||
'channels' => [
|
||||
|
||||
'stack' => [
|
||||
'driver' => 'stack',
|
||||
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
|
||||
'ignore_exceptions' => false,
|
||||
],
|
||||
|
||||
'single' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'days' => env('LOG_DAILY_DAYS', 14),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
|
||||
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
|
||||
'level' => env('LOG_LEVEL', 'critical'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
|
||||
],
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => StreamHandler::class,
|
||||
'handler_with' => [
|
||||
'stream' => 'php://stderr',
|
||||
],
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'syslog' => [
|
||||
'driver' => 'syslog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'errorlog' => [
|
||||
'driver' => 'errorlog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
'emergency' => [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,118 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Mailer
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default mailer that is used to send all email
|
||||
| messages unless another mailer is explicitly specified when sending
|
||||
| the message. All additional mailers can be configured within the
|
||||
| "mailers" array. Examples of each type of mailer are provided.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('MAIL_MAILER', 'log'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Mailer Configurations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure all of the mailers used by your application plus
|
||||
| their respective settings. Several examples have been configured for
|
||||
| you and you are free to add your own as your application requires.
|
||||
|
|
||||
| Laravel supports a variety of mail "transport" drivers that can be used
|
||||
| when delivering an email. You may specify which one you're using for
|
||||
| your mailers below. You may also add additional mailers if needed.
|
||||
|
|
||||
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||
| "postmark", "resend", "log", "array",
|
||||
| "failover", "roundrobin"
|
||||
|
|
||||
*/
|
||||
|
||||
'mailers' => [
|
||||
|
||||
'smtp' => [
|
||||
'transport' => 'smtp',
|
||||
'scheme' => env('MAIL_SCHEME'),
|
||||
'url' => env('MAIL_URL'),
|
||||
'host' => env('MAIL_HOST', '127.0.0.1'),
|
||||
'port' => env('MAIL_PORT', 2525),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'timeout' => null,
|
||||
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'transport' => 'ses',
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
|
||||
// 'client' => [
|
||||
// 'timeout' => 5,
|
||||
// ],
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'transport' => 'resend',
|
||||
],
|
||||
|
||||
'sendmail' => [
|
||||
'transport' => 'sendmail',
|
||||
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'transport' => 'log',
|
||||
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||
],
|
||||
|
||||
'array' => [
|
||||
'transport' => 'array',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'transport' => 'failover',
|
||||
'mailers' => [
|
||||
'smtp',
|
||||
'log',
|
||||
],
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
'roundrobin' => [
|
||||
'transport' => 'roundrobin',
|
||||
'mailers' => [
|
||||
'ses',
|
||||
'postmark',
|
||||
],
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global "From" Address
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may wish for all emails sent by your application to be sent from
|
||||
| the same address. Here you may specify a name and address that is
|
||||
| used globally for all emails that are sent by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Queue Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Laravel's queue supports a variety of backends via a single, unified
|
||||
| API, giving you convenient access to each backend using identical
|
||||
| syntax for each. The default queue connection is defined below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('QUEUE_CONNECTION', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Queue Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the connection options for every queue backend
|
||||
| used by your application. An example configuration is provided for
|
||||
| each backend supported by Laravel. You're also free to add more.
|
||||
|
|
||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sync' => [
|
||||
'driver' => 'sync',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
||||
'queue' => env('DB_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
||||
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => 0,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
'driver' => 'sqs',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||
'queue' => env('SQS_QUEUE', 'default'),
|
||||
'suffix' => env('SQS_SUFFIX'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => null,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Job Batching
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following options configure the database and table that store job
|
||||
| batching information. These options can be updated to any database
|
||||
| connection and table which has been defined by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'batching' => [
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'job_batches',
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Failed Queue Jobs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options configure the behavior of failed queue job logging so you
|
||||
| can control how and where failed jobs are stored. Laravel ships with
|
||||
| support for storing failed jobs in a simple file or in a database.
|
||||
|
|
||||
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'failed_jobs',
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Third Party Services
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file is for storing the credentials for third party services such
|
||||
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||
| location for this type of information, allowing packages to have
|
||||
| a conventional file to locate the various service credentials.
|
||||
|
|
||||
*/
|
||||
|
||||
'postmark' => [
|
||||
'token' => env('POSTMARK_TOKEN'),
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'key' => env('RESEND_KEY'),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'notifications' => [
|
||||
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
||||
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,217 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Session Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines the default session driver that is utilized for
|
||||
| incoming requests. Laravel supports a variety of storage options to
|
||||
| persist session data. Database storage is a great default choice.
|
||||
|
|
||||
| Supported: "file", "cookie", "database", "memcached",
|
||||
| "redis", "dynamodb", "array"
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SESSION_DRIVER', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Lifetime
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the number of minutes that you wish the session
|
||||
| to be allowed to remain idle before it expires. If you want them
|
||||
| to expire immediately when the browser is closed then you may
|
||||
| indicate that via the expire_on_close configuration option.
|
||||
|
|
||||
*/
|
||||
|
||||
'lifetime' => (int) env('SESSION_LIFETIME', 120),
|
||||
|
||||
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Encryption
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to easily specify that all of your session data
|
||||
| should be encrypted before it's stored. All encryption is performed
|
||||
| automatically by Laravel and you may use the session like normal.
|
||||
|
|
||||
*/
|
||||
|
||||
'encrypt' => env('SESSION_ENCRYPT', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session File Location
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the "file" session driver, the session files are placed
|
||||
| on disk. The default storage location is defined here; however, you
|
||||
| are free to provide another location where they should be stored.
|
||||
|
|
||||
*/
|
||||
|
||||
'files' => storage_path('framework/sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Connection
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" or "redis" session drivers, you may specify a
|
||||
| connection that should be used to manage these sessions. This should
|
||||
| correspond to a connection in your database configuration options.
|
||||
|
|
||||
*/
|
||||
|
||||
'connection' => env('SESSION_CONNECTION'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" session driver, you may specify the table to
|
||||
| be used to store sessions. Of course, a sensible default is defined
|
||||
| for you; however, you're welcome to change this to another table.
|
||||
|
|
||||
*/
|
||||
|
||||
'table' => env('SESSION_TABLE', 'sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using one of the framework's cache driven session backends, you may
|
||||
| define the cache store which should be used to store the session data
|
||||
| between requests. This must match one of your defined cache stores.
|
||||
|
|
||||
| Affects: "dynamodb", "memcached", "redis"
|
||||
|
|
||||
*/
|
||||
|
||||
'store' => env('SESSION_STORE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Sweeping Lottery
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some session drivers must manually sweep their storage location to get
|
||||
| rid of old sessions from storage. Here are the chances that it will
|
||||
| happen on a given request. By default, the odds are 2 out of 100.
|
||||
|
|
||||
*/
|
||||
|
||||
'lottery' => [2, 100],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may change the name of the session cookie that is created by
|
||||
| the framework. Typically, you should not need to change this value
|
||||
| since doing so does not grant a meaningful security improvement.
|
||||
|
|
||||
*/
|
||||
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
Str::slug((string) env('APP_NAME', 'laravel')).'-session'
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The session cookie path determines the path for which the cookie will
|
||||
| be regarded as available. Typically, this will be the root path of
|
||||
| your application, but you're free to change this when necessary.
|
||||
|
|
||||
*/
|
||||
|
||||
'path' => env('SESSION_PATH', '/'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Domain
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the domain and subdomains the session cookie is
|
||||
| available to. By default, the cookie will be available to the root
|
||||
| domain and all subdomains. Typically, this shouldn't be changed.
|
||||
|
|
||||
*/
|
||||
|
||||
'domain' => env('SESSION_DOMAIN'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTPS Only Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By setting this option to true, session cookies will only be sent back
|
||||
| to the server if the browser has a HTTPS connection. This will keep
|
||||
| the cookie from being sent to you when it can't be done securely.
|
||||
|
|
||||
*/
|
||||
|
||||
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTP Access Only
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will prevent JavaScript from accessing the
|
||||
| value of the cookie and the cookie will only be accessible through
|
||||
| the HTTP protocol. It's unlikely you should disable this option.
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => env('SESSION_HTTP_ONLY', true),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Same-Site Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines how your cookies behave when cross-site requests
|
||||
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||
| will set this value to "lax" to permit secure cross-site requests.
|
||||
|
|
||||
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
||||
|
|
||||
| Supported: "lax", "strict", "none", null
|
||||
|
|
||||
*/
|
||||
|
||||
'same_site' => env('SESSION_SAME_SITE', 'lax'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Partitioned Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will tie the cookie to the top-level site for
|
||||
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||
|
|
||||
*/
|
||||
|
||||
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1 @@
|
|||
*.sqlite*
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||
*/
|
||||
class UserFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The current password being used by the factory.
|
||||
*/
|
||||
protected static ?string $password;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'email_verified_at' => now(),
|
||||
'password' => static::$password ??= Hash::make('password'),
|
||||
'remember_token' => Str::random(10),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicate that the model's email address should be unverified.
|
||||
*/
|
||||
public function unverified(): static
|
||||
{
|
||||
return $this->state(fn (array $attributes) => [
|
||||
'email_verified_at' => null,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
<?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::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||
$table->string('email')->primary();
|
||||
$table->string('token');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('sessions', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->foreignId('user_id')->nullable()->index();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->longText('payload');
|
||||
$table->integer('last_activity')->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('password_reset_tokens');
|
||||
Schema::dropIfExists('sessions');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?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::create('cache', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->mediumText('value');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
|
||||
Schema::create('cache_locks', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->string('owner');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('cache');
|
||||
Schema::dropIfExists('cache_locks');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
<?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::create('jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('queue')->index();
|
||||
$table->longText('payload');
|
||||
$table->unsignedTinyInteger('attempts');
|
||||
$table->unsignedInteger('reserved_at')->nullable();
|
||||
$table->unsignedInteger('available_at');
|
||||
$table->unsignedInteger('created_at');
|
||||
});
|
||||
|
||||
Schema::create('job_batches', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->string('name');
|
||||
$table->integer('total_jobs');
|
||||
$table->integer('pending_jobs');
|
||||
$table->integer('failed_jobs');
|
||||
$table->longText('failed_job_ids');
|
||||
$table->mediumText('options')->nullable();
|
||||
$table->integer('cancelled_at')->nullable();
|
||||
$table->integer('created_at');
|
||||
$table->integer('finished_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->text('connection');
|
||||
$table->text('queue');
|
||||
$table->longText('payload');
|
||||
$table->longText('exception');
|
||||
$table->timestamp('failed_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('jobs');
|
||||
Schema::dropIfExists('job_batches');
|
||||
Schema::dropIfExists('failed_jobs');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
<?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::create('penyakit', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('kode')->unique();
|
||||
$table->string('nama');
|
||||
$table->text('deskripsi');
|
||||
$table->text('solusi');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('penyakit');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
<?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::create('gejala', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('kode', 10)->nullable();
|
||||
$table->string('nama')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('gejala');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<?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::create('pengguna', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('nama', 100)->nullable();
|
||||
$table->string('email', 100)->unique()->nullable();
|
||||
$table->string('kata_sandi')->nullable();
|
||||
$table->enum('peran', ['admin', 'petani'])->default('petani');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('pengguna');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<?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::create('diagnosa', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('pengguna_id')
|
||||
->nullable()
|
||||
->constrained('pengguna')
|
||||
->nullOnDelete();
|
||||
|
||||
$table->foreignId('penyakit_id')
|
||||
->nullable()
|
||||
->constrained('penyakit')
|
||||
->nullOnDelete();
|
||||
|
||||
$table->timestamp('tanggal');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('diagnosa');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?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::create('detail_diagnosa', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('diagnosa_id')
|
||||
->nullable()
|
||||
->constrained('diagnosa')
|
||||
->nullOnDelete();
|
||||
|
||||
$table->foreignId('gejala_id')
|
||||
->nullable()
|
||||
->constrained('gejala')
|
||||
->nullOnDelete();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('detail_diagnosa');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
<?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::create('aturan', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
// Relasi ke tabel penyakit
|
||||
$table->foreignId('penyakit_id')
|
||||
->constrained('penyakit')
|
||||
->cascadeOnDelete();
|
||||
|
||||
// Relasi ke tabel gejala
|
||||
$table->foreignId('gejala_id')
|
||||
->constrained('gejala')
|
||||
->cascadeOnDelete();
|
||||
|
||||
// Nilai keyakinan pakar
|
||||
$table->float('cf_pakar')->default(0);
|
||||
|
||||
// Mencegah data aturan duplikat
|
||||
$table->unique(['penyakit_id', 'gejala_id']);
|
||||
|
||||
// created_at dan updated_at
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('aturan');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
<?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::create('tentang_kami', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('judul', 100)->nullable();
|
||||
$table->text('deskripsi')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('tentang_kami');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?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('detail_diagnosa', function (Blueprint $table) {
|
||||
|
||||
// Menyimpan nilai keyakinan user
|
||||
$table->double('cf_user')->default(0)->after('gejala_id');
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('detail_diagnosa', function (Blueprint $table) {
|
||||
|
||||
// Menghapus kolom cf_user
|
||||
$table->dropColumn('cf_user');
|
||||
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?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('diagnosa', function (Blueprint $table) {
|
||||
|
||||
// Menyimpan hasil akhir Certainty Factor
|
||||
$table->double('cf_hasil')->default(0)->after('penyakit_id');
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('diagnosa', function (Blueprint $table) {
|
||||
|
||||
// Menghapus kolom cf_hasil
|
||||
$table->dropColumn('cf_hasil');
|
||||
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class AturanSeeder extends Seeder
|
||||
{
|
||||
public function run()
|
||||
{
|
||||
DB::table('aturan')->insert([
|
||||
|
||||
// =====================
|
||||
// P1 - Bulai
|
||||
// =====================
|
||||
['id'=>1,'penyakit_id'=>1,'gejala_id'=>1,'cf_pakar'=>0.6],
|
||||
['id'=>2,'penyakit_id'=>1,'gejala_id'=>2,'cf_pakar'=>0.9],
|
||||
['id'=>3,'penyakit_id'=>1,'gejala_id'=>3,'cf_pakar'=>0.6],
|
||||
['id'=>4,'penyakit_id'=>1,'gejala_id'=>4,'cf_pakar'=>0.5],
|
||||
|
||||
// =====================
|
||||
// P2 - Bercak Daun
|
||||
// =====================
|
||||
['id'=>5,'penyakit_id'=>2,'gejala_id'=>5,'cf_pakar'=>0.8],
|
||||
['id'=>6,'penyakit_id'=>2,'gejala_id'=>6,'cf_pakar'=>0.6],
|
||||
['id'=>7,'penyakit_id'=>2,'gejala_id'=>7,'cf_pakar'=>0.7],
|
||||
|
||||
// =====================
|
||||
// P3 - Busuk Pelepah
|
||||
// =====================
|
||||
['id'=>8,'penyakit_id'=>3,'gejala_id'=>8,'cf_pakar'=>0.6],
|
||||
['id'=>9,'penyakit_id'=>3,'gejala_id'=>9,'cf_pakar'=>0.8],
|
||||
['id'=>10,'penyakit_id'=>3,'gejala_id'=>10,'cf_pakar'=>0.7],
|
||||
|
||||
// =====================
|
||||
// P4 - Busuk Batang
|
||||
// =====================
|
||||
['id'=>11,'penyakit_id'=>4,'gejala_id'=>11,'cf_pakar'=>0.7],
|
||||
['id'=>12,'penyakit_id'=>4,'gejala_id'=>12,'cf_pakar'=>0.8],
|
||||
['id'=>13,'penyakit_id'=>4,'gejala_id'=>13,'cf_pakar'=>0.9],
|
||||
['id'=>14,'penyakit_id'=>4,'gejala_id'=>14,'cf_pakar'=>0.7],
|
||||
|
||||
// =====================
|
||||
// P5 - Hawar Daun
|
||||
// =====================
|
||||
['id'=>15,'penyakit_id'=>5,'gejala_id'=>15,'cf_pakar'=>0.7],
|
||||
['id'=>16,'penyakit_id'=>5,'gejala_id'=>16,'cf_pakar'=>0.8],
|
||||
['id'=>17,'penyakit_id'=>5,'gejala_id'=>17,'cf_pakar'=>0.6],
|
||||
['id'=>18,'penyakit_id'=>5,'gejala_id'=>18,'cf_pakar'=>0.7],
|
||||
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$this->call([
|
||||
PenyakitSeeder::class,
|
||||
GejalaSeeder::class,
|
||||
PenggunaSeeder::class,
|
||||
TentangKamiSeeder::class,
|
||||
AturanSeeder::class,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class GejalaSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('gejala')->insert([
|
||||
['id'=>1,'kode'=>'G1','nama'=>'Jagung bewarna kuning'],
|
||||
['id'=>2,'kode'=>'G2','nama'=>'Ada serbuk keputihan dibatang'],
|
||||
['id'=>3,'kode'=>'G3','nama'=>'Batang berukuran kecil'],
|
||||
['id'=>4,'kode'=>'G4','nama'=>'Lambatnya pertumbuhan tongkol'],
|
||||
['id'=>5,'kode'=>'G5','nama'=>'Banyak bercak bulat hingga lonjang pada daun'],
|
||||
['id'=>6,'kode'=>'G6','nama'=>'Bercak berwarna kuning pada daun'],
|
||||
['id'=>7,'kode'=>'G7','nama'=>'Berwarna coklat pada tulang daun'],
|
||||
['id'=>8,'kode'=>'G8','nama'=>'Terdapat bercak pada pelepah'],
|
||||
['id'=>9,'kode'=>'G9','nama'=>'Bercak berwarna orange pada pelepah'],
|
||||
['id'=>10,'kode'=>'G10','nama'=>'Terdapat bercak meluas pada pelepah'],
|
||||
['id'=>11,'kode'=>'G11','nama'=>'Batang bawah berwarna coklat'],
|
||||
['id'=>12,'kode'=>'G12','nama'=>'Batang lembab dan lunak'],
|
||||
['id'=>13,'kode'=>'G13','nama'=>'Berbau busuk pada batang'],
|
||||
['id'=>14,'kode'=>'G14','nama'=>'Batang mudah patah'],
|
||||
['id'=>15,'kode'=>'G15','nama'=>'Adanya warna coklat pada tengah bercak'],
|
||||
['id'=>16,'kode'=>'G16','nama'=>'Bercak berwarna coklat kehijauan pada daun'],
|
||||
['id'=>17,'kode'=>'G17','nama'=>'Bercak berbentuk oval'],
|
||||
['id'=>18,'kode'=>'G18','nama'=>'Terdapat warna hitam pada bercak'],
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class PenggunaSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('pengguna')->insert([
|
||||
[
|
||||
'id' => 1,
|
||||
'nama' => 'Admin Pakar',
|
||||
'email' => 'admin12@gmail.com',
|
||||
'kata_sandi' => Hash::make('admin123'),
|
||||
'peran' => 'admin'
|
||||
],
|
||||
[
|
||||
'id' => 2,
|
||||
'nama' => 'Wahyu Bagas',
|
||||
'email' => 'wahyubagas120903@gmail.com',
|
||||
'kata_sandi' => Hash::make('yugas123'),
|
||||
'peran' => 'petani'
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class PenyakitSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('penyakit')->insert([
|
||||
[
|
||||
'id' => 1,
|
||||
'kode' => 'P1',
|
||||
'nama' => 'Bulai',
|
||||
'deskripsi' => 'Penyakit akibat jamur menyebabkan daun menguning.',
|
||||
'solusi' => 'Cabut dan musnahkan tanaman yang sudah parah (kerdil dan daun selurunya belang puih) dengan cara dibakar atau dikubur jauh dari lahan. Segera semprot fungisida sistemik seperti Metalaksil atau Propamokarb hidroklorida pada tanaman yang menunjukkan gejala awal dan tanaman sehat di sekitarnya, penyemprotan diarahkan ke titik tumbuh. Optimalkan pemupukan, khususnya fosfor dan kalium, untuk memperkuat tanaman yang belum terserang parah.'
|
||||
],
|
||||
[
|
||||
'id' => 2,
|
||||
'kode' => 'P2',
|
||||
'nama' => 'Bercak Daun',
|
||||
'deskripsi' => 'Daun muncul bercak coklat.',
|
||||
'solusi' => 'Potong dan buang daun-daun yang sudah terinfeksi untuk mengurangi sumber inokulum. Semprot fungisida kontak dan sistemik seperti campuran Mancozeb dan Difenokonazol atau Klorotalonil dan Azoksistrobin. Ulangi setiap 7-10 hari dengan dosis tepat, terutama jika cuaca lembab. Hentikan penyiraman atas jika memungkinkan, gunakan irigasi tetes atau leb. '
|
||||
],
|
||||
[
|
||||
'id' => 3,
|
||||
'kode' => 'P3',
|
||||
'nama' => 'Busuk Pelepah',
|
||||
'deskripsi' => 'Pelepah membusuk.',
|
||||
'solusi' => 'Kurangi kelembaban mendesak seperti perbaiki drainase, buat parit kecil, dan kurangi frekuensi penyiraman. Semprot fungisida langsung pada bagian pelepah yang terserang menggunakan Propikonazol, Tiadinil, atau Validamisin, tambahkan perekat agar obat menempel di pelepah. Bersihkan gulma dan sisa tanaman di sekitar pertanaman untuk meningkatkan sirkulasi udara.'
|
||||
],
|
||||
[
|
||||
'id' => 4,
|
||||
'kode' => 'P4',
|
||||
'nama' => 'Busuk Batang',
|
||||
'deskripsi' => 'Batang lunak dan busuk.',
|
||||
'solusi' => 'Segera panen lebih awal jika penyakit muncul mendekati masa panen dan batang mulai lemah atau layu untuk menghindari tanaman roboh. Untuk tanaman masih tahap vegetatif, berikan penyangga pada batang yang mulai terinfeksi agar tidak mudah patah. Semprot atau siram fungisida seperti Simoksanil atau Fosetyl-Al di sekitar pangkal batang, efektivitas terbatas jika infeksi sudah dalam. Hindari stres air (kekeringan atau genangan) karena akan memperparah busuk batang.'
|
||||
],
|
||||
[
|
||||
'id' => 5,
|
||||
'kode' => 'P5',
|
||||
'nama' => 'Hawar Daun',
|
||||
'deskripsi' => 'Daun kering dan mati.',
|
||||
'solusi' => 'Jika Bakteri (Hawar Daun Bakteri) Semprot bakterisida berbahan tembaga (misalnya Cuprous oxide) atau agensi hayati Bacillus subtilis. Pemotongan daun sakit bisa membantu, namun alat potong harus didesinfeksi (misal dengan alkohol) setiap selesai memotong tanaman yang sakit. Jika Jamur (seperti Helminthosporium) Gunakan fungisida seperti Azoksistrobin, Tebuconazole, atau Trifloxystrobin. Hindari melukai tanaman (misal saat penyiangan) karena luka adalah pintu masuk bakteri.'
|
||||
],
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class TentangKamiSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('tentang_kami')->insert([
|
||||
[
|
||||
'id'=>1,
|
||||
'judul'=>'Tentang JagungKu',
|
||||
'deskripsi'=>'Sistem pakar JagungKu dikembangkan oleh Wahyu Bagas Prastyo untuk membantu petani mendiagnosis penyakit jagung hibrida.'
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
siskargung_php:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
image: siskargung-app
|
||||
container_name: siskargung-php-container
|
||||
restart: unless-stopped
|
||||
working_dir: /var/www
|
||||
volumes:
|
||||
- .:/var/www
|
||||
networks:
|
||||
- siskargung-network
|
||||
- laravel-network
|
||||
|
||||
siskargung_nginx:
|
||||
image: nginx:alpine
|
||||
container_name: siskargung-nginx-container
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8092:80"
|
||||
volumes:
|
||||
- .:/var/www
|
||||
- ./nginx/conf.d:/etc/nginx/conf.d
|
||||
networks:
|
||||
- siskargung-network
|
||||
depends_on:
|
||||
- siskargung_php
|
||||
|
||||
networks:
|
||||
siskargung-network:
|
||||
driver: bridge
|
||||
|
||||
laravel-network:
|
||||
external: true
|
||||
name: bpbd_laravel-network
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
server {
|
||||
listen 80;
|
||||
server_name jagungku.web.id;
|
||||
|
||||
root /var/www/public;
|
||||
index index.php index.html;
|
||||
|
||||
access_log /var/log/nginx/siskargung_access.log;
|
||||
error_log /var/log/nginx/siskargung_error.log;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass siskargung_php:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"$schema": "https://json.schemastore.org/package.json",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "vite build",
|
||||
"dev": "vite"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/vite": "^4.0.0",
|
||||
"axios": "^1.11.0",
|
||||
"concurrently": "^9.0.1",
|
||||
"laravel-vite-plugin": "^2.0.0",
|
||||
"tailwindcss": "^4.0.0",
|
||||
"vite": "^7.0.7"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||||
bootstrap="vendor/autoload.php"
|
||||
colors="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Unit">
|
||||
<directory>tests/Unit</directory>
|
||||
</testsuite>
|
||||
<testsuite name="Feature">
|
||||
<directory>tests/Feature</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<source>
|
||||
<include>
|
||||
<directory>app</directory>
|
||||
</include>
|
||||
</source>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
|
||||
<env name="BCRYPT_ROUNDS" value="4"/>
|
||||
<env name="CACHE_STORE" value="array"/>
|
||||
<env name="DB_CONNECTION" value="sqlite"/>
|
||||
<env name="DB_DATABASE" value=":memory:"/>
|
||||
<env name="MAIL_MAILER" value="array"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="PULSE_ENABLED" value="false"/>
|
||||
<env name="TELESCOPE_ENABLED" value="false"/>
|
||||
<env name="NIGHTWATCH_ENABLED" value="false"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Handle X-XSRF-Token Header
|
||||
RewriteCond %{HTTP:x-xsrf-token} .
|
||||
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 588 KiB |
|
After Width: | Height: | Size: 114 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 924 KiB |
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Determine if the application is in maintenance mode...
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the request...
|
||||
/** @var Application $app */
|
||||
$app = require_once __DIR__.'/../bootstrap/app.php';
|
||||
|
||||
$app->handleRequest(Request::capture());
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
User-agent: *
|
||||
Disallow:
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
@import 'tailwindcss';
|
||||
|
||||
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
||||
@source '../../storage/framework/views/*.php';
|
||||
@source '../**/*.blade.php';
|
||||
@source '../**/*.js';
|
||||
|
||||
@theme {
|
||||
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
||||
'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
import './bootstrap';
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
import axios from 'axios';
|
||||
window.axios = axios;
|
||||
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Tambah Aturan')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-2">➕ Tambah Basis Aturan</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Form ini digunakan untuk menentukan hubungan
|
||||
<br>
|
||||
antara penyakit dan gejala pada sistem pakar.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body fs-5">
|
||||
|
||||
<form action="{{ route('admin.aturan.store') }}" method="POST">
|
||||
@csrf
|
||||
|
||||
@include('admin.aturan.form')
|
||||
|
||||
<!-- Tombol -->
|
||||
<div class="d-flex justify-content-end mt-4">
|
||||
<a href="{{ route('admin.aturan.index') }}"
|
||||
class="btn btn-secondary fs-5 px-4 py-2 me-2">
|
||||
Kembali
|
||||
</a>
|
||||
|
||||
<button type="submit"
|
||||
class="btn btn-success fs-5 px-4 py-2">
|
||||
💾 Simpan
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Edit Aturan')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-2">✏️ Edit Basis Aturan</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Form ini digunakan untuk memperbarui hubungan
|
||||
<br>
|
||||
antara penyakit dan gejala.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body fs-5">
|
||||
|
||||
<form action="{{ route('admin.aturan.update', $penyakitId) }}" method="POST">
|
||||
@csrf
|
||||
@method('PUT')
|
||||
|
||||
@include('admin.aturan.form')
|
||||
|
||||
<!-- Tombol -->
|
||||
<div class="d-flex justify-content-end mt-4">
|
||||
<a href="{{ route('admin.aturan.index') }}"
|
||||
class="btn btn-secondary fs-5 px-4 py-2 me-2">
|
||||
Kembali
|
||||
</a>
|
||||
|
||||
<button type="submit"
|
||||
class="btn btn-warning fs-5 px-4 py-2">
|
||||
🔄 Update
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
<!-- Pilih Penyakit -->
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Penyakit</label>
|
||||
<select name="penyakit_id" class="form-select" required>
|
||||
<option value="">-- Pilih Penyakit --</option>
|
||||
@foreach ($penyakit as $p)
|
||||
<option value="{{ $p->id }}"
|
||||
{{ old('penyakit_id', $selectedPenyakit ?? '') == $p->id ? 'selected' : '' }}>
|
||||
{{ $p->kode }} - {{ $p->nama }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Pilih Gejala -->
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Gejala</label>
|
||||
<div class="border rounded p-3" style="max-height:300px; overflow-y:auto;">
|
||||
@foreach ($gejala as $g)
|
||||
<div class="border rounded p-3 mb-2">
|
||||
|
||||
<div class="row align-items-center">
|
||||
|
||||
<!-- Checkbox -->
|
||||
<div class="col-md-7">
|
||||
|
||||
<div class="form-check">
|
||||
|
||||
<input class="form-check-input aturan-checkbox"
|
||||
type="checkbox"
|
||||
name="gejala_id[]"
|
||||
value="{{ $g->id }}"
|
||||
id="g{{ $g->id }}"
|
||||
data-target="cf{{ $g->id }}"
|
||||
|
||||
{{ in_array($g->id, old('gejala_id', $selectedGejala ?? []))
|
||||
? 'checked'
|
||||
: '' }}>
|
||||
|
||||
<label class="form-check-label fw-semibold"
|
||||
for="g{{ $g->id }}">
|
||||
|
||||
{{ $g->kode }} - {{ $g->nama }}
|
||||
|
||||
</label>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- CF Pakar -->
|
||||
<div class="col-md-5">
|
||||
|
||||
<input type="number"
|
||||
step="0.1"
|
||||
min="0"
|
||||
max="1"
|
||||
|
||||
name="cf_pakar[{{ $g->id }}]"
|
||||
|
||||
id="cf{{ $g->id }}"
|
||||
|
||||
class="form-control"
|
||||
|
||||
placeholder="CF Pakar (0 - 1)"
|
||||
|
||||
value="{{ old('cf_pakar.' . $g->id,
|
||||
$cfPakar[$g->id] ?? '') }}">
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,196 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Basis Aturan')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- ================= JUDUL ================= -->
|
||||
<div class="text-center mb-4">
|
||||
|
||||
<h3 class="fw-bold mb-4">
|
||||
📘 Basis Aturan Forward Chaining & Certainty Factor
|
||||
</h3>
|
||||
|
||||
<p class="text-muted fs-5">
|
||||
Tabel ini menampilkan representasi hubungan antara gejala dan penyakit
|
||||
<br>
|
||||
yang digunakan sebagai basis pengetahuan dalam
|
||||
<br>
|
||||
proses penalaran metode Forward Chaining & Certainty Factor.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- ================= NOTIFIKASI ================= -->
|
||||
@if(session('success'))
|
||||
|
||||
<div class="alert alert-success text-center">
|
||||
|
||||
{{ session('success') }}
|
||||
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
<!-- ================= TOMBOL TAMBAH ================= -->
|
||||
<div class="d-flex justify-content-end mb-4">
|
||||
|
||||
<a href="{{ route('admin.aturan.create') }}"
|
||||
class="btn btn-success fs-5 px-4 py-2">
|
||||
|
||||
+ Tambah Aturan
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- ================= CARD ================= -->
|
||||
<div class="card shadow rounded-4 border-0">
|
||||
|
||||
<div class="card-body p-0"
|
||||
style="overflow-x:auto">
|
||||
|
||||
<!-- ================= TABEL ================= -->
|
||||
<table class="table table-bordered table-striped table-hover align-middle mb-0 text-center"
|
||||
style="font-size:22px;">
|
||||
|
||||
<!-- ================= HEADER ================= -->
|
||||
<thead class="table-warning">
|
||||
|
||||
<tr>
|
||||
|
||||
<!-- KOLOM PENYAKIT -->
|
||||
<th style="min-width:280px;
|
||||
padding:20px;">
|
||||
|
||||
Penyakit \ Gejala
|
||||
|
||||
</th>
|
||||
|
||||
<!-- KOLOM GEJALA -->
|
||||
@foreach ($gejala as $g)
|
||||
|
||||
<th style="min-width:70px;
|
||||
padding:18px;">
|
||||
|
||||
{{ $g->kode }}
|
||||
|
||||
</th>
|
||||
|
||||
@endforeach
|
||||
|
||||
<!-- KOLOM AKSI -->
|
||||
<th style="min-width:160px;
|
||||
padding:18px;">
|
||||
|
||||
Aksi
|
||||
|
||||
</th>
|
||||
|
||||
</tr>
|
||||
|
||||
</thead>
|
||||
|
||||
<!-- ================= BODY ================= -->
|
||||
<tbody>
|
||||
|
||||
@foreach ($penyakit as $p)
|
||||
|
||||
<tr>
|
||||
|
||||
<!-- ================= NAMA PENYAKIT ================= -->
|
||||
<td class="text-start fw-bold"
|
||||
style="padding:20px;
|
||||
font-size:24px;">
|
||||
|
||||
{{ $p->kode }}
|
||||
|
||||
<br>
|
||||
|
||||
<small style="font-size:22px;">
|
||||
|
||||
{{ $p->nama }}
|
||||
|
||||
</small>
|
||||
|
||||
</td>
|
||||
|
||||
<!-- ================= MATRIX RULE ================= -->
|
||||
@foreach ($gejala as $g)
|
||||
|
||||
@php
|
||||
|
||||
// Ambil nilai CF Pakar
|
||||
$cf = $aturanMap[$p->id][$g->id] ?? null;
|
||||
|
||||
@endphp
|
||||
|
||||
<td style="font-size:24px;
|
||||
font-weight:bold;
|
||||
padding:18px;">
|
||||
|
||||
@if($cf !== null)
|
||||
|
||||
<!-- Tampilkan CF Pakar -->
|
||||
{{ rtrim(rtrim($cf, '0'), '.') }}
|
||||
|
||||
@else
|
||||
|
||||
—
|
||||
|
||||
@endif
|
||||
|
||||
</td>
|
||||
|
||||
@endforeach
|
||||
|
||||
<!-- ================= AKSI ================= -->
|
||||
<td>
|
||||
|
||||
<div class="d-flex justify-content-center gap-2">
|
||||
|
||||
<!-- EDIT -->
|
||||
<a href="{{ route('admin.aturan.edit', $p->id) }}"
|
||||
class="btn btn-warning btn-sm fs-5"
|
||||
title="Edit aturan">
|
||||
|
||||
✏️
|
||||
|
||||
</a>
|
||||
|
||||
<!-- DELETE -->
|
||||
<form action="{{ route('admin.aturan.deleteByPenyakit', $p->id) }}"
|
||||
method="POST"
|
||||
onsubmit="return confirm('Hapus semua aturan penyakit ini?')">
|
||||
|
||||
@csrf
|
||||
@method('DELETE')
|
||||
|
||||
<button class="btn btn-danger btn-sm fs-5"
|
||||
title="Hapus aturan">
|
||||
|
||||
🗑️
|
||||
|
||||
</button>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
@endforeach
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,234 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Dashboard Admin')
|
||||
|
||||
@section('content')
|
||||
|
||||
<!-- ================= HERO DASHBOARD ================= -->
|
||||
<section class="py-5 text-white" style="background-color:#F2720C;">
|
||||
<div class="container text-center">
|
||||
<h1 class="fw-bold mb-2">📊 Dashboard Admin</h1>
|
||||
<p class="fs-5 mb-0" style="color:#fff9f0;">
|
||||
Ringkasan data Sistem Pakar Penyakit Jagung Hibrida
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ================= STATISTIK ================= -->
|
||||
<section class="py-5" style="background-color:#FFF7E0;">
|
||||
<div class="container">
|
||||
|
||||
<div class="row g-5 text-center mb-4">
|
||||
<div class="col-md-6">
|
||||
<div class="bg-white rounded-4 shadow-lg p-5">
|
||||
<div style="font-size:3rem;">👤</div>
|
||||
<h4>Total Pengguna</h4>
|
||||
<h1 class="fw-bold text-primary">{{ $total_pengguna }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="bg-white rounded-4 shadow-lg p-5">
|
||||
<div style="font-size:3rem;">🦠</div>
|
||||
<h4>Data Penyakit</h4>
|
||||
<h1 class="fw-bold text-success">{{ $total_penyakit }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row g-5 text-center">
|
||||
<div class="col-md-6">
|
||||
<div class="bg-white rounded-4 shadow-lg p-5">
|
||||
<div style="font-size:3rem;">📋</div>
|
||||
<h4>Data Gejala</h4>
|
||||
<h1 class="fw-bold text-warning">{{ $total_gejala }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="bg-white rounded-4 shadow-lg p-5">
|
||||
<div style="font-size:3rem;">🧠</div>
|
||||
<h4>Riwayat Diagnosa</h4>
|
||||
<h1 class="fw-bold text-danger">{{ $total_diagnosa }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ================= RIWAYAT DIAGNOSA ================= -->
|
||||
<section class="py-5" style="background-color:#FFFDF5;">
|
||||
<div class="container">
|
||||
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold text-orange">📑 Data Riwayat Diagnosa</h3>
|
||||
<span class="badge bg-success fs-6">
|
||||
Total: {{ $riwayat->total() }} Diagnosis
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<!-- SEARCH -->
|
||||
<form method="GET" class="mb-4">
|
||||
<div class="row g-2 justify-content-center">
|
||||
<div class="col-md-4">
|
||||
<input type="text"
|
||||
name="search"
|
||||
class="form-control"
|
||||
placeholder="Cari berdasarkan nama pengguna..."
|
||||
value="{{ $search }}">
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<button class="btn btn-primary w-100">🔍 Cari</button>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<a href="{{ route('admin.dashboard') }}" class="btn btn-secondary w-100">
|
||||
Reset
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@if($riwayat->count())
|
||||
<div class="card shadow-lg border-0">
|
||||
|
||||
<div class="card-header bg-orange text-white">
|
||||
Daftar Riwayat Diagnosis
|
||||
</div>
|
||||
|
||||
<div class="card-body p-0">
|
||||
<table class="table table-hover mb-0">
|
||||
<thead class="table-light">
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>Nama Pengguna</th>
|
||||
<th>Tanggal</th>
|
||||
<th>Gejala</th>
|
||||
<th>Penyakit</th>
|
||||
<th>Solusi</th>
|
||||
<th class="text-center" style="width:120px;">Detail</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($riwayat as $index => $r)
|
||||
<tr>
|
||||
<td>
|
||||
{{ ($riwayat->currentPage() - 1) * $riwayat->perPage() + $index + 1 }}
|
||||
</td>
|
||||
<td>{{ $r->pengguna->nama ?? '-' }}</td>
|
||||
<td>
|
||||
{{ \Carbon\Carbon::parse($r->tanggal)->format('d/m/Y H:i') }}
|
||||
</td>
|
||||
<td>{{ $r->gejala_string }}</td>
|
||||
<td>{{ $r->penyakit->nama ?? '-' }}</td>
|
||||
<td class="solusi-preview">{{ $r->solusi_singkat }}</td>
|
||||
<td class="text-center">
|
||||
<button class="btn btn-sm btn-primary"
|
||||
data-bs-toggle="modal"
|
||||
data-bs-target="#detailModalAdmin{{ $r->id }}">
|
||||
Detail
|
||||
</button>
|
||||
</td>
|
||||
|
||||
{{-- MODAL DETAIL RIWAYAT DIAGNOSA --}}
|
||||
<!-- MODAL DETAIL ADMIN -->
|
||||
<div class="modal fade" id="detailModalAdmin{{ $r->id }}" tabindex="-1">
|
||||
<div class="modal-dialog modal-lg modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
|
||||
<div class="modal-header bg-orange text-white">
|
||||
<h5 class="modal-title">
|
||||
Detail Diagnosa - {{ $r->pengguna->nama ?? '-' }}
|
||||
</h5>
|
||||
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
|
||||
<div class="modal-body">
|
||||
|
||||
<p><strong>Tanggal:</strong>
|
||||
{{ \Carbon\Carbon::parse($r->tanggal)->format('d/m/Y H:i:s') }}
|
||||
</p>
|
||||
|
||||
<p class="mb-1">
|
||||
<strong>Penyakit:</strong>
|
||||
{{ $r->penyakit->nama ?? '-' }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Tingkat Keyakinan:</strong>
|
||||
|
||||
<span class="badge bg-success">
|
||||
{{ number_format($r->cf_hasil, 2) }}%
|
||||
</span>
|
||||
</p>
|
||||
|
||||
<p><strong>Solusi Lengkap:</strong><br>
|
||||
{{ $r->penyakit->solusi ?? '-' }}
|
||||
</p>
|
||||
|
||||
<hr>
|
||||
|
||||
<h6>Gejala yang Dipilih</h6>
|
||||
<ul>
|
||||
@foreach($r->detailDiagnosa as $detail)
|
||||
<li>
|
||||
<strong>{{ $detail->gejala->kode }}</strong>
|
||||
- {{ $detail->gejala->nama }}
|
||||
|
||||
<span class="badge bg-primary ms-2">
|
||||
CF User:
|
||||
{{ rtrim(rtrim($detail->cf_user, '0'), '.') }}
|
||||
</span>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="modal-footer justify-content-end py-2">
|
||||
<!-- Tombol Hapus (gaya kecil & ringkas) -->
|
||||
<form action="{{ route('admin.diagnosa.destroy', $r->id) }}" method="POST"
|
||||
onsubmit="return confirm('Yakin ingin menghapus data diagnosa ini?')"
|
||||
class="d-inline">
|
||||
@csrf
|
||||
@method('DELETE')
|
||||
<button type="submit" class="btn btn-danger btn-sm px-2 py-1">
|
||||
Hapus
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
{{-- TOMBOL NEXT --}}
|
||||
@if($riwayat->hasMorePages())
|
||||
<div class="card-footer text-center">
|
||||
<a href="{{ $riwayat->nextPageUrl() }}" class="btn btn-outline-primary px-4">
|
||||
Next ➜
|
||||
</a>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
@else
|
||||
<div class="alert alert-warning text-center">
|
||||
Data tidak ditemukan
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
.bg-orange { background:#F2720C }
|
||||
.solusi-preview { max-height:60px; overflow:hidden }
|
||||
</style>
|
||||
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Tambah Gejala')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul Halaman -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-2">➕ Tambah Gejala</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Form ini digunakan untuk menambahkan data gejala baru
|
||||
<br>
|
||||
yang akan digunakan dalam proses diagnosis sistem pakar.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card Form -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body fs-5">
|
||||
|
||||
<form action="{{ route('admin.gejala.store') }}" method="POST">
|
||||
@csrf
|
||||
|
||||
@include('admin.gejala.form')
|
||||
|
||||
<!-- Tombol Aksi -->
|
||||
<div class="d-flex justify-content-end mt-4">
|
||||
<a href="{{ route('admin.gejala.index') }}"
|
||||
class="btn btn-secondary fs-5 px-4 py-2 me-2">
|
||||
Kembali
|
||||
</a>
|
||||
|
||||
<button type="submit"
|
||||
class="btn btn-success fs-5 px-4 py-2">
|
||||
💾 Simpan
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Edit Gejala')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul Halaman -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-2">✏️ Edit Gejala</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Form ini digunakan untuk memperbarui data gejala
|
||||
<br>
|
||||
agar tetap sesuai dengan kebutuhan sistem pakar.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card Form -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body fs-5">
|
||||
|
||||
<form action="{{ route('admin.gejala.update', $gejala->id) }}" method="POST">
|
||||
@csrf
|
||||
@method('PUT')
|
||||
|
||||
@include('admin.gejala.form')
|
||||
|
||||
<!-- Tombol Aksi -->
|
||||
<div class="d-flex justify-content-end mt-4">
|
||||
<a href="{{ route('admin.gejala.index') }}"
|
||||
class="btn btn-secondary fs-5 px-4 py-2 me-2">
|
||||
Kembali
|
||||
</a>
|
||||
|
||||
<button type="submit"
|
||||
class="btn btn-warning fs-5 px-4 py-2">
|
||||
🔄 Update
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<!-- Input Kode Gejala -->
|
||||
<!-- Digunakan sebagai kode unik untuk mengidentifikasi gejala -->
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Kode Gejala</label>
|
||||
<input type="text"
|
||||
name="kode"
|
||||
class="form-control"
|
||||
value="{{ old('kode', $gejala->kode ?? '') }}"
|
||||
required>
|
||||
</div>
|
||||
|
||||
<!-- Input Nama Gejala -->
|
||||
<!-- Digunakan untuk menampilkan nama gejala pada proses diagnosis -->
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Nama Gejala</label>
|
||||
<input type="text"
|
||||
name="nama"
|
||||
class="form-control"
|
||||
value="{{ old('nama', $gejala->nama ?? '') }}"
|
||||
required>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Data Gejala')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul Halaman -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-4">📋 Data Gejala</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Daftar gejala yang digunakan sebagai dasar penentuan penyakit
|
||||
<br>
|
||||
dalam proses diagnosis pada sistem pakar.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Tombol Tambah -->
|
||||
<div class="d-flex justify-content-end mb-3">
|
||||
<a href="{{ route('admin.gejala.create') }}"
|
||||
class="btn btn-success fs-5 px-4 py-2">
|
||||
+ Tambah Gejala
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Card Tabel -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body p-0">
|
||||
<table class="table table-bordered table-striped table-hover align-middle fs-5 mb-0">
|
||||
<thead class="table-warning text-center">
|
||||
<tr>
|
||||
<th class="py-3">No</th>
|
||||
<th class="py-3">Kode</th>
|
||||
<th class="py-3">Nama Gejala</th>
|
||||
<th class="py-3">Aksi</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@forelse ($gejala as $item)
|
||||
<tr>
|
||||
<td class="text-center py-3">{{ $loop->iteration }}</td>
|
||||
<td class="py-3">{{ $item->kode }}</td>
|
||||
<td class="py-3">{{ $item->nama }}</td>
|
||||
<td class="text-center py-3">
|
||||
<a href="{{ route('admin.gejala.edit', $item->id) }}"
|
||||
class="btn btn-warning fs-5 px-4 py-2 me-2">
|
||||
✏️ Edit
|
||||
</a>
|
||||
|
||||
<form action="{{ route('admin.gejala.destroy', $item->id) }}"
|
||||
method="POST" class="d-inline">
|
||||
@csrf
|
||||
@method('DELETE')
|
||||
<button class="btn btn-danger fs-5 px-4 py-2"
|
||||
onclick="return confirm('Yakin hapus data?')">
|
||||
🗑️ Hapus
|
||||
</button>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
@empty
|
||||
<tr>
|
||||
<td colspan="4" class="text-center py-4 text-muted">
|
||||
Data gejala belum tersedia.
|
||||
</td>
|
||||
</tr>
|
||||
@endforelse
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Tambah Penyakit')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul Halaman -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-2">➕ Tambah Penyakit</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Form ini digunakan untuk menambahkan data penyakit baru
|
||||
<br>
|
||||
yang akan digunakan dalam proses diagnosis pada sistem pakar.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card Form -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body fs-5">
|
||||
|
||||
<form action="{{ route('admin.penyakit.store') }}" method="POST">
|
||||
@csrf
|
||||
|
||||
@include('admin.penyakit.form')
|
||||
|
||||
<!-- Tombol Aksi -->
|
||||
<div class="d-flex justify-content-end mt-4">
|
||||
<a href="{{ route('admin.penyakit.index') }}"
|
||||
class="btn btn-secondary fs-5 px-4 py-2 me-2">
|
||||
Kembali
|
||||
</a>
|
||||
|
||||
<button type="submit"
|
||||
class="btn btn-success fs-5 px-4 py-2">
|
||||
💾 Simpan
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
@extends('layouts.admin')
|
||||
|
||||
@section('title', 'Edit Penyakit')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-4">
|
||||
|
||||
<!-- Judul Halaman -->
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold mb-2">✏️ Edit Penyakit</h3>
|
||||
<p class="text-muted fs-5">
|
||||
Form ini digunakan untuk memperbarui data penyakit
|
||||
<br>
|
||||
agar tetap sesuai dengan kebutuhan sistem pakar.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Card Form -->
|
||||
<div class="card shadow-sm rounded-4">
|
||||
<div class="card-body fs-5">
|
||||
|
||||
<form action="{{ route('admin.penyakit.update', $penyakit->id) }}" method="POST">
|
||||
@csrf
|
||||
@method('PUT')
|
||||
|
||||
@include('admin.penyakit.form')
|
||||
|
||||
<!-- Tombol Aksi -->
|
||||
<div class="d-flex justify-content-end mt-4">
|
||||
<a href="{{ route('admin.penyakit.index') }}"
|
||||
class="btn btn-secondary fs-5 px-4 py-2 me-2">
|
||||
Kembali
|
||||
</a>
|
||||
|
||||
<button type="submit"
|
||||
class="btn btn-warning fs-5 px-4 py-2">
|
||||
🔄 Update
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||