first commit
|
@ -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
|
||||
|
||||
[docker-compose.yml]
|
||||
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 @@
|
|||
firebase_credentials.json
|
||||
/.phpunit.cache
|
||||
/node_modules
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/storage/pail
|
||||
/vendor
|
||||
.env
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
.phpunit.result.cache
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
/auth.json
|
||||
/.fleet
|
||||
/.idea
|
||||
/.nova
|
||||
/.vscode
|
||||
/.zed
|
|
@ -0,0 +1,9 @@
|
|||
php:
|
||||
preset: laravel
|
||||
disabled:
|
||||
- no_unused_imports
|
||||
finder:
|
||||
not-name:
|
||||
- index.php
|
||||
js: true
|
||||
css: true
|
|
@ -0,0 +1,36 @@
|
|||
# Release Notes
|
||||
|
||||
## [Unreleased](https://github.com/laravel/laravel/compare/v12.0.6...12.x)
|
||||
|
||||
## [v12.0.6](https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6) - 2025-04-08
|
||||
|
||||
**Full Changelog**: https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6
|
||||
|
||||
## [v12.0.5](https://github.com/laravel/laravel/compare/v12.0.4...v12.0.5) - 2025-04-02
|
||||
|
||||
* [12.x] Update `config/mail.php` to match the latest core configuration by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6594
|
||||
|
||||
## [v12.0.4](https://github.com/laravel/laravel/compare/v12.0.3...v12.0.4) - 2025-03-31
|
||||
|
||||
* Bump vite from 6.0.11 to 6.2.3 - Vulnerability patch by [@abdel-aouby](https://github.com/abdel-aouby) in https://github.com/laravel/laravel/pull/6586
|
||||
* Bump vite from 6.2.3 to 6.2.4 by [@thinkverse](https://github.com/thinkverse) in https://github.com/laravel/laravel/pull/6590
|
||||
|
||||
## [v12.0.3](https://github.com/laravel/laravel/compare/v12.0.2...v12.0.3) - 2025-03-17
|
||||
|
||||
* Remove reverted change from CHANGELOG.md by [@AJenbo](https://github.com/AJenbo) in https://github.com/laravel/laravel/pull/6565
|
||||
* Improves clarity in app.css file by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6569
|
||||
* [12.x] Refactor: Structural improvement for clarity by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6574
|
||||
* Bump axios from 1.7.9 to 1.8.2 - Vulnerability patch by [@abdel-aouby](https://github.com/abdel-aouby) in https://github.com/laravel/laravel/pull/6572
|
||||
* [12.x] Remove Unnecessarily [@source](https://github.com/source) by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6584
|
||||
|
||||
## [v12.0.2](https://github.com/laravel/laravel/compare/v12.0.1...v12.0.2) - 2025-03-04
|
||||
|
||||
* Make the github test action run out of the box independent of the choice of testing framework by [@ndeblauw](https://github.com/ndeblauw) in https://github.com/laravel/laravel/pull/6555
|
||||
|
||||
## [v12.0.1](https://github.com/laravel/laravel/compare/v12.0.0...v12.0.1) - 2025-02-24
|
||||
|
||||
* [12.x] prefer stable stability by [@pataar](https://github.com/pataar) in https://github.com/laravel/laravel/pull/6548
|
||||
|
||||
## [v12.0.0 (2025-??-??)](https://github.com/laravel/laravel/compare/v11.0.2...v12.0.0)
|
||||
|
||||
Laravel 12 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.
|
|
@ -0,0 +1,61 @@
|
|||
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
|
||||
</p>
|
||||
|
||||
## About Laravel
|
||||
|
||||
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
|
||||
|
||||
- [Simple, fast routing engine](https://laravel.com/docs/routing).
|
||||
- [Powerful dependency injection container](https://laravel.com/docs/container).
|
||||
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
|
||||
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
|
||||
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
|
||||
- [Robust background job processing](https://laravel.com/docs/queues).
|
||||
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
|
||||
|
||||
Laravel is accessible, powerful, and provides tools required for large, robust applications.
|
||||
|
||||
## Learning Laravel
|
||||
|
||||
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
|
||||
|
||||
You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
|
||||
|
||||
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
|
||||
|
||||
## Laravel Sponsors
|
||||
|
||||
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
|
||||
|
||||
### Premium Partners
|
||||
|
||||
- **[Vehikl](https://vehikl.com/)**
|
||||
- **[Tighten Co.](https://tighten.co)**
|
||||
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
|
||||
- **[64 Robots](https://64robots.com)**
|
||||
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
|
||||
- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
|
||||
- **[Redberry](https://redberry.international/laravel-development/)**
|
||||
- **[Active Logic](https://activelogic.com)**
|
||||
|
||||
## Contributing
|
||||
|
||||
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
|
||||
|
||||
## Security Vulnerabilities
|
||||
|
||||
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
|
||||
|
||||
## License
|
||||
|
||||
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
|
@ -0,0 +1,95 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Balita;
|
||||
use Illuminate\Http\Request;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class BalitaController extends Controller
|
||||
{
|
||||
public function index(Request $request)
|
||||
{
|
||||
// Ambil input pencarian dari request
|
||||
$search = $request->input('search');
|
||||
|
||||
// Ambil data balita dan hitung umur dalam bulan
|
||||
$balitas = Balita::when($search, function ($query, $search) {
|
||||
// Filter berdasarkan Nama Anak atau NIK
|
||||
return $query->where('nama_anak', 'like', "%{$search}%")
|
||||
->orWhere('nik', 'like', "%{$search}%");
|
||||
})
|
||||
->get()
|
||||
->map(function ($balita) {
|
||||
// Hitung umur dalam bulan
|
||||
$balita->umur_bulan = Carbon::parse($balita->tanggal_lahir)->diffInMonths(now());
|
||||
return $balita;
|
||||
});
|
||||
|
||||
return view('data_balita', compact('balitas'));
|
||||
}
|
||||
|
||||
|
||||
public function create()
|
||||
{
|
||||
return view('pendaftaran_balita');
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'nik' => 'required|unique:balitas,nik',
|
||||
'nama_anak' => 'required',
|
||||
'jenis_kelamin' => 'required',
|
||||
'tanggal_lahir' => 'required|date',
|
||||
'tempat_lahir' => 'required',
|
||||
'ibu_kandung' => 'required',
|
||||
'nama_ayah' => 'required',
|
||||
'alamat' => 'required',
|
||||
]);
|
||||
|
||||
Balita::create($request->all());
|
||||
|
||||
return redirect()->route('balita.index')->with('success', 'Data balita berhasil ditambahkan!');
|
||||
}
|
||||
|
||||
public function show($id)
|
||||
{
|
||||
$balita = Balita::findOrFail($id);
|
||||
$balita->umur_bulan = Carbon::parse($balita->tanggal_lahir)->diffInMonths(now());
|
||||
|
||||
return view('show_balita', compact('balita'));
|
||||
}
|
||||
|
||||
public function edit($id)
|
||||
{
|
||||
$balita = Balita::findOrFail($id);
|
||||
return view('edit_balita', compact('balita'));
|
||||
}
|
||||
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
$balita = Balita::findOrFail($id);
|
||||
|
||||
$balita->update([
|
||||
'nik' => $request->nik,
|
||||
'nama_anak' => $request->nama_anak,
|
||||
'jenis_kelamin' => $request->jenis_kelamin,
|
||||
'tanggal_lahir' => $request->tanggal_lahir,
|
||||
'tempat_lahir' => $request->tempat_lahir,
|
||||
'ibu_kandung' => $request->ibu_kandung,
|
||||
'nama_ayah' => $request->nama_ayah,
|
||||
'alamat' => $request->alamat,
|
||||
]);
|
||||
|
||||
return redirect()->route('balita.index')->with('success', 'Data berhasil diperbarui!');
|
||||
}
|
||||
|
||||
public function destroy($id)
|
||||
{
|
||||
$balita = Balita::findOrFail($id);
|
||||
$balita->delete();
|
||||
|
||||
return redirect()->route('balita.index')->with('success', 'Data balita berhasil dihapus!');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
abstract class Controller
|
||||
{
|
||||
//
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class DashboardController extends Controller
|
||||
{
|
||||
// Menampilkan halaman dashboard
|
||||
public function index()
|
||||
{
|
||||
// Jika ingin mengirim data ke view, tambahkan di sini
|
||||
return view('dashboard');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\RiwayatPemeriksaan;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class GrafikPertumbuhanController extends Controller
|
||||
{
|
||||
public function index(Request $request)
|
||||
{
|
||||
// Search query for filtering baby names
|
||||
$namaSearch = $request->input('search_nama');
|
||||
$riwayatPemeriksaan = collect();
|
||||
|
||||
// Fetch the filtered records based on name search if provided
|
||||
if ($namaSearch) {
|
||||
$riwayatPemeriksaan = RiwayatPemeriksaan::where('nama', 'like', '%' . $namaSearch . '%')
|
||||
->orderBy('tanggal_pemeriksaan', 'asc')
|
||||
->get();
|
||||
} elseif ($request->has('nama')) {
|
||||
$nama = $request->input('nama');
|
||||
$riwayatPemeriksaan = RiwayatPemeriksaan::where('nama', $nama)
|
||||
->orderBy('tanggal_pemeriksaan', 'asc')
|
||||
->get();
|
||||
}
|
||||
|
||||
// Fetch all unique baby names from RiwayatPemeriksaan table for the dropdown
|
||||
$namaBalitas = RiwayatPemeriksaan::select('nama')->distinct()->get();
|
||||
|
||||
// If it's an AJAX request, return the data as JSON
|
||||
if ($request->ajax()) {
|
||||
return response()->json($riwayatPemeriksaan);
|
||||
}
|
||||
|
||||
return view('grafik_pertumbuhan', compact('riwayatPemeriksaan', 'namaBalitas', 'namaSearch'));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\RiwayatPemeriksaan; // Pastikan model ini ada
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class RiwayatPemeriksaanController extends Controller
|
||||
{
|
||||
public function index(Request $request)
|
||||
{
|
||||
// Mengambil input pencarian dari request
|
||||
$search = $request->input('search');
|
||||
|
||||
// Mengambil data riwayat pemeriksaan, dengan pencarian jika ada
|
||||
$riwayatPemeriksaan = RiwayatPemeriksaan::when($search, function ($query, $search) {
|
||||
// Cari berdasarkan nama atau field lain yang relevan
|
||||
return $query->where('nama', 'like', "%{$search}%");
|
||||
})
|
||||
->get(); // Bisa diganti dengan paginate() jika butuh pagination
|
||||
|
||||
// Menampilkan data dalam view
|
||||
return view('riwayat_pemeriksaan', compact('riwayatPemeriksaan'));
|
||||
}
|
||||
|
||||
public function edit($id)
|
||||
{
|
||||
$data = RiwayatPemeriksaan::findOrFail($id);
|
||||
return view('edit_riwayat', compact('data'));
|
||||
}
|
||||
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
$request->validate([
|
||||
'nama' => 'required|string|max:255',
|
||||
'umur' => 'required|integer',
|
||||
'berat' => 'required|numeric',
|
||||
'tinggi' => 'required|numeric',
|
||||
'hasil_analisis' => 'required|string',
|
||||
'tanggal_pemeriksaan' => 'required|date',
|
||||
]);
|
||||
|
||||
$riwayat = RiwayatPemeriksaan::findOrFail($id);
|
||||
$riwayat->update($request->all());
|
||||
|
||||
return redirect()->route('riwayat.index')->with('success', 'Data berhasil diperbarui.');
|
||||
}
|
||||
|
||||
public function destroy($id)
|
||||
{
|
||||
$riwayat = RiwayatPemeriksaan::findOrFail($id);
|
||||
$riwayat->delete();
|
||||
|
||||
return redirect()->route('riwayat.index')->with('success', 'Data berhasil dihapus.');
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,200 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Balita;
|
||||
use App\Models\RiwayatPemeriksaan;
|
||||
use App\Services\FirebaseService;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
|
||||
class TimbanganController extends Controller
|
||||
{
|
||||
protected $firebase;
|
||||
|
||||
public function __construct(FirebaseService $firebase)
|
||||
{
|
||||
$this->firebase = $firebase;
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$firebaseData = $this->firebase->getTimbanganData();
|
||||
$tinggi = $firebaseData['tinggi'] ?? null;
|
||||
$berat = $firebaseData['berat'] ?? null;
|
||||
|
||||
$balitas = Balita::all();
|
||||
$riwayatPemeriksaan = RiwayatPemeriksaan::latest()->get();
|
||||
$oldInput = session('oldInput');
|
||||
|
||||
return view('timbangan', compact('tinggi', 'berat', 'balitas', 'riwayatPemeriksaan', 'oldInput'));
|
||||
}
|
||||
|
||||
public function getRealtimeData()
|
||||
{
|
||||
$firebaseData = $this->firebase->getTimbanganData();
|
||||
|
||||
return response()->json([
|
||||
'tinggi' => $firebaseData['tinggi'] ?? null,
|
||||
'berat' => $firebaseData['berat'] ?? null,
|
||||
]);
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
try {
|
||||
// Validasi input berat dan tinggi
|
||||
$request->merge([
|
||||
'berat' => is_numeric($request->berat) ? $request->berat : null,
|
||||
'tinggi' => is_numeric($request->tinggi) ? $request->tinggi : null,
|
||||
]);
|
||||
|
||||
$validated = $request->validate([
|
||||
'nik' => 'required|string',
|
||||
'nama' => 'required|string',
|
||||
'umur' => 'required|integer',
|
||||
'berat' => 'required|numeric|min:0.1',
|
||||
'tinggi' => 'required|numeric|min:0.1',
|
||||
'hasil_analisis' => 'nullable|string',
|
||||
'tanggal_pemeriksaan' => 'nullable|date',
|
||||
'catatan' => 'nullable|string',
|
||||
]);
|
||||
|
||||
// Jika tanggal tidak diisi, gunakan tanggal sekarang
|
||||
if (empty($validated['tanggal_pemeriksaan'])) {
|
||||
$validated['tanggal_pemeriksaan'] = now()->toDateString();
|
||||
}
|
||||
|
||||
RiwayatPemeriksaan::create($validated);
|
||||
session()->forget('oldInput');
|
||||
|
||||
return redirect()->route('timbangan.index')->with('success', 'Berhasil simpan riwayat pemeriksaan!');
|
||||
} catch (\Exception $e) {
|
||||
Log::error('Gagal simpan riwayat pemeriksaan: ' . $e->getMessage());
|
||||
return redirect()->route('timbangan.index')->with('error', 'Gagal menyimpan! ' . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function analisisAI(Request $request)
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'nama' => 'required|string',
|
||||
'umur' => 'required|integer',
|
||||
'berat' => 'required|numeric',
|
||||
'tinggi' => 'required|numeric',
|
||||
'catatan' => 'nullable|string',
|
||||
'nik' => 'nullable|string',
|
||||
]);
|
||||
|
||||
$catatan = $validated['catatan'] ?? 'No notes.';
|
||||
$prompt = "Give a brief growth analysis for a toddler with the following data:\n".
|
||||
"- Weight: {$validated['berat']} kg\n".
|
||||
"- Height: {$validated['tinggi']} cm\n".
|
||||
"- Age: {$validated['umur']} months\n".
|
||||
"- Notes: {$catatan}\n\n".
|
||||
"Respond in this format (no long explanations):\n".
|
||||
"Analysis result: [Growth status]. Advice: [short 1-2 sentence nutrition advice based on the notes if needed].";
|
||||
|
||||
$hasil_en = $this->analisisDenganCohere($prompt);
|
||||
$hasil_id = $this->translateToIndonesianLong($hasil_en);
|
||||
|
||||
try {
|
||||
$riwayat = RiwayatPemeriksaan::create([
|
||||
'nik' => $validated['nik'] ?? '-',
|
||||
'nama' => $validated['nama'],
|
||||
'umur' => $validated['umur'],
|
||||
'berat' => $validated['berat'],
|
||||
'tinggi' => $validated['tinggi'],
|
||||
'hasil_analisis' => $hasil_id,
|
||||
'tanggal_pemeriksaan' => now()->toDateString(),
|
||||
'catatan' => $catatan,
|
||||
]);
|
||||
|
||||
return view('analisisai', [
|
||||
'nama' => $riwayat->nama,
|
||||
'umur' => $riwayat->umur,
|
||||
'berat' => $riwayat->berat,
|
||||
'tinggi' => $riwayat->tinggi,
|
||||
'hasil_analisis' => $riwayat->hasil_analisis,
|
||||
'catatan' => $riwayat->catatan,
|
||||
'tanggal' => $riwayat->tanggal_pemeriksaan
|
||||
]);
|
||||
|
||||
} catch (\Exception $e) {
|
||||
Log::error('Gagal menyimpan hasil analisis AI: ' . $e->getMessage());
|
||||
return redirect()->route('timbangan.index')->with('error', 'Gagal simpan hasil analisis AI!');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
private function translateToIndonesianLong(string $text): string
|
||||
{
|
||||
$chunks = str_split($text, 480);
|
||||
$translated = '';
|
||||
|
||||
foreach ($chunks as $chunk) {
|
||||
try {
|
||||
$response = Http::timeout(10)->get('https://api.mymemory.translated.net/get', [
|
||||
'q' => $chunk,
|
||||
'langpair' => 'en|id'
|
||||
]);
|
||||
|
||||
if ($response->successful() && isset($response['responseData']['translatedText'])) {
|
||||
$translated .= $response['responseData']['translatedText'] . ' ';
|
||||
} else {
|
||||
$translated .= '[Gagal terjemahkan sebagian teks] ';
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
$translated .= '[Error jaringan] ';
|
||||
Log::error('Translate error: ' . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
return trim($translated);
|
||||
}
|
||||
|
||||
private function analisisDenganCohere(string $prompt): string
|
||||
{
|
||||
try {
|
||||
$apiKey = env('COHERE_API_KEY');
|
||||
if (!$apiKey) {
|
||||
Log::error('API Key Cohere belum diset di .env');
|
||||
return 'API Key AI belum diset. Hubungi admin.';
|
||||
}
|
||||
|
||||
$response = Http::timeout(30)->withHeaders([
|
||||
'Authorization' => 'Bearer ' . $apiKey,
|
||||
'Content-Type' => 'application/json',
|
||||
])->post('https://api.cohere.ai/generate', [
|
||||
'model' => 'command',
|
||||
'prompt' => $prompt,
|
||||
'max_tokens' => 200, // pendek
|
||||
'temperature' => 0.7,
|
||||
]);
|
||||
|
||||
if ($response->failed()) {
|
||||
Log::error('Gagal memanggil Cohere API: ' . $response->body());
|
||||
return 'Gagal memanggil AI: ' . $response->body();
|
||||
}
|
||||
|
||||
$result = $response->json();
|
||||
return isset($result['text']) ? trim($result['text']) : 'Respons AI tidak valid.';
|
||||
} catch (\Exception $e) {
|
||||
Log::error('Exception Cohere API: ' . $e->getMessage());
|
||||
return 'Kesalahan saat analisis AI: ' . $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
public function kembali()
|
||||
{
|
||||
return redirect()->route('timbangan.index');
|
||||
}
|
||||
|
||||
public function showAnalisis()
|
||||
{
|
||||
return view('analisisai');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Balita extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'balitas';
|
||||
|
||||
protected $fillable = [
|
||||
'nik',
|
||||
'nama_anak',
|
||||
'jenis_kelamin',
|
||||
'tanggal_lahir',
|
||||
'tempat_lahir',
|
||||
'ibu_kandung',
|
||||
'nama_ayah',
|
||||
'alamat',
|
||||
];
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class RiwayatPemeriksaan extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'riwayat_pemeriksaans'; // Ensure the table name matches your migration
|
||||
|
||||
protected $fillable = [
|
||||
'nik',
|
||||
'nama',
|
||||
'umur',
|
||||
'berat',
|
||||
'tinggi',
|
||||
'hasil_analisis',
|
||||
'tanggal_pemeriksaan',
|
||||
'catatan'
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'tanggal_pemeriksaan' => 'date',
|
||||
'berat' => 'float',
|
||||
'tinggi' => 'float',
|
||||
'umur' => 'integer',
|
||||
];
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
class User extends Authenticatable
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\UserFactory> */
|
||||
use HasFactory, Notifiable;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var list<string>
|
||||
*/
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'email',
|
||||
'password',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be hidden for serialization.
|
||||
*
|
||||
* @var list<string>
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password',
|
||||
'remember_token',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the attributes that should be cast.
|
||||
*
|
||||
* @return array<string, string>
|
||||
*/
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'email_verified_at' => 'datetime',
|
||||
'password' => 'hashed',
|
||||
];
|
||||
}
|
||||
}
|
|
@ -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,26 @@
|
|||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use Kreait\Firebase\Factory;
|
||||
|
||||
class FirebaseService
|
||||
{
|
||||
protected $database;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$factory = (new Factory)
|
||||
->withServiceAccount(config('firebase.credentials'))
|
||||
->withDatabaseUri(config('firebase.database_url'));
|
||||
|
||||
$this->database = $factory->createDatabase();
|
||||
}
|
||||
|
||||
public function getTimbanganData()
|
||||
{
|
||||
return $this->database
|
||||
->getReference('timbangan')
|
||||
->getValue();
|
||||
}
|
||||
}
|
|
@ -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,18 @@
|
|||
<?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) {
|
||||
//
|
||||
})
|
||||
->withExceptions(function (Exceptions $exceptions) {
|
||||
//
|
||||
})->create();
|
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
App\Providers\AppServiceProvider::class,
|
||||
];
|
|
@ -0,0 +1,77 @@
|
|||
{
|
||||
"$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",
|
||||
"guzzlehttp/guzzle": "^7.9",
|
||||
"kreait/firebase-php": "^7.18",
|
||||
"laravel/framework": "^12.0",
|
||||
"laravel/tinker": "^2.10.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"fakerphp/faker": "^1.23",
|
||||
"laravel/pail": "^1.2.2",
|
||||
"laravel/pint": "^1.13",
|
||||
"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": {
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"test": [
|
||||
"@php artisan config:clear --ansi",
|
||||
"@php artisan test"
|
||||
]
|
||||
},
|
||||
"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' => 'UTC',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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', 'en'),
|
||||
|
||||
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
|
||||
|
||||
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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(',', 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' => env('AUTH_MODEL', App\Models\User::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 amount 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(env('APP_NAME', 'laravel'), '_').'_cache_'),
|
||||
|
||||
];
|
|
@ -0,0 +1,174 @@
|
|||
<?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,
|
||||
],
|
||||
|
||||
'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(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'),
|
||||
],
|
||||
|
||||
'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'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
|
@ -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,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'credentials' => base_path('firebase_credentials.json'),
|
||||
'database_url' => env('FIREBASE_DATABASE_URL'),
|
||||
];
|
|
@ -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(',', 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(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'),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'key' => env('RESEND_KEY'),
|
||||
],
|
||||
|
||||
'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", "apc",
|
||||
| "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: "apc", "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(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,32 @@
|
|||
<?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()
|
||||
{
|
||||
Schema::create('riwayat_pemeriksaans', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('nama');
|
||||
$table->string('nik')->after('nama')->nullable();
|
||||
$table->integer('umur');
|
||||
$table->float('berat');
|
||||
$table->float('tinggi');
|
||||
$table->enum('hasil_analisis', ['stunting', 'sehat']);
|
||||
$table->date('tanggal_pemeriksaan');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('riwayat_pemeriksaans');
|
||||
}
|
||||
|
||||
};
|
|
@ -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()
|
||||
{
|
||||
Schema::create('balitas', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('nik', 20)->unique();
|
||||
$table->string('nama_anak', 255);
|
||||
$table->enum('jenis_kelamin', ['Laki-laki', 'Perempuan']);
|
||||
$table->date('tanggal_lahir');
|
||||
$table->string('tempat_lahir', 255);
|
||||
$table->string('ibu_kandung', 255);
|
||||
$table->string('nama_ayah', 255);
|
||||
$table->string('alamat', 500);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('balitas');
|
||||
}
|
||||
};
|
|
@ -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::table('riwayat_pemeriksaan', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('riwayat_pemeriksaan', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
};
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class ChangeHasilAnalisisToTextInRiwayatPemeriksaansTable extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::table('riwayat_pemeriksaans', function (Blueprint $table) {
|
||||
$table->text('catatan')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::table('riwayat_pemeriksaans', function (Blueprint $table) {
|
||||
$table->dropColumn('catatan');
|
||||
});
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class BalitaSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
DB::table('balitas')->insert([
|
||||
[
|
||||
'nik' => '123456789012345678',
|
||||
'nama_anak' => 'Ahmad Fauzan',
|
||||
'jenis_kelamin' => 'Laki-laki',
|
||||
'tanggal_lahir' => '2020-05-10',
|
||||
'tempat_lahir' => 'Jakarta',
|
||||
'ibu_kandung' => 'Siti Aminah',
|
||||
'nama_ayah' => 'Budi Santoso',
|
||||
'alamat' => 'Jl. Melati No.10, Jakarta',
|
||||
'created_at' => Carbon::now(),
|
||||
'updated_at' => Carbon::now(),
|
||||
],
|
||||
[
|
||||
'nik' => '987654321098765432',
|
||||
'nama_anak' => 'Siti Nurhaliza',
|
||||
'jenis_kelamin' => 'Perempuan',
|
||||
'tanggal_lahir' => '2019-08-22',
|
||||
'tempat_lahir' => 'Bandung',
|
||||
'ibu_kandung' => 'Rina Marlina',
|
||||
'nama_ayah' => 'Andi Wijaya',
|
||||
'alamat' => 'Jl. Mawar No.15, Bandung',
|
||||
'created_at' => Carbon::now(),
|
||||
'updated_at' => Carbon::now(),
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\User;
|
||||
// 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([
|
||||
BalitaSeeder::class,
|
||||
RiwayatPemeriksaanSeeder::class,
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class RiwayatPemeriksaanSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
DB::table('riwayat_pemeriksaans')->insert([
|
||||
[
|
||||
'nama' => 'Ahmad Fauzan',
|
||||
'umur' => 4,
|
||||
'berat' => 15.5,
|
||||
'tinggi' => 98,
|
||||
'hasil_analisis' => 'sehat',
|
||||
'tanggal_pemeriksaan' => '2024-04-20',
|
||||
'created_at' => Carbon::now(),
|
||||
'updated_at' => Carbon::now(),
|
||||
],
|
||||
[
|
||||
'nama' => 'Siti Nurhaliza',
|
||||
'umur' => 5,
|
||||
'berat' => 14.2,
|
||||
'tinggi' => 95,
|
||||
'hasil_analisis' => 'stunting',
|
||||
'tanggal_pemeriksaan' => '2024-04-18',
|
||||
'created_at' => Carbon::now(),
|
||||
'updated_at' => Carbon::now(),
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "vite build",
|
||||
"dev": "vite"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/vite": "^4.0.0",
|
||||
"axios": "^1.8.2",
|
||||
"concurrently": "^9.0.1",
|
||||
"laravel-vite-plugin": "^1.2.0",
|
||||
"tailwindcss": "^4.0.0",
|
||||
"vite": "^6.2.4"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
<?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="PULSE_ENABLED" value="false"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="TELESCOPE_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>
|
|
@ -0,0 +1,167 @@
|
|||
@media (max-width: 1300px) {
|
||||
.treatment_section .side_img {
|
||||
opacity: 0.2;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1120px) {}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.hero_area {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.header_section {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.header_section .header_top .contact_nav {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.quote_btn-container {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.quote_btn-container a {
|
||||
margin-right: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.slider_section {
|
||||
padding: 75px 0 125px 0;
|
||||
}
|
||||
|
||||
|
||||
.client_section .box {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.client_section .carousel_btn-box {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 45px;
|
||||
}
|
||||
|
||||
.client_section .carousel-control-prev,
|
||||
.client_section .carousel-control-next {
|
||||
position: unset;
|
||||
margin: 0 2.5px;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.info_section .info_main_row>div {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.about_section .detail-box {
|
||||
margin-top: 45px;
|
||||
}
|
||||
|
||||
.slider_section .dot_design {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.team_section .team_carousel {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.team_section .team_carousel .owl-nav {
|
||||
margin-top: 45px;
|
||||
}
|
||||
|
||||
.team_section .team_carousel .owl-nav button {
|
||||
position: unset;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.contact_section .form_container {
|
||||
margin-right: 0;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.info_section .info_main_row>div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.info_section .info_main_row>div:nth-last-child(1) {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.info_section .info_contact {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.info_section .social_box {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.info_section .info_post {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.info_section .info_post .post_box {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.info_section .info_post .post_box .img-box {
|
||||
margin-right: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.header_section .header_top .contact_nav a {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.header_section .header_top .contact_nav a span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header_section .header_top .contact_nav a i {
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.treatment_section .side_img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.info_section .info_top {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.info_section .info_top .info_logo {
|
||||
margin-right: 0;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {}
|
||||
|
||||
@media (max-width: 420px) {}
|
||||
|
||||
@media (max-width: 376px) {
|
||||
.slider_section .detail_box h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.container {
|
||||
max-width: 1170px;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 350 KiB |
After Width: | Height: | Size: 330 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 328 B |
After Width: | Height: | Size: 297 KiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 362 B |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 69 KiB |
After Width: | Height: | Size: 41 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,46 @@
|
|||
// to get current year
|
||||
function getYear() {
|
||||
var currentDate = new Date();
|
||||
var currentYear = currentDate.getFullYear();
|
||||
document.querySelector("#displayYear").innerHTML = currentYear;
|
||||
}
|
||||
|
||||
getYear();
|
||||
|
||||
// nice select
|
||||
$(document).ready(function () {
|
||||
$('select').niceSelect();
|
||||
});
|
||||
|
||||
// date picker
|
||||
$(function () {
|
||||
$("#inputDate").datepicker({
|
||||
autoclose: true,
|
||||
todayHighlight: true
|
||||
}).datepicker('update', new Date());
|
||||
});
|
||||
|
||||
// owl carousel slider js
|
||||
$('.team_carousel').owlCarousel({
|
||||
loop: true,
|
||||
margin: 15,
|
||||
dots: true,
|
||||
autoplay: true,
|
||||
navText: [
|
||||
'<i class="fa fa-angle-left" aria-hidden="true"></i>',
|
||||
'<i class="fa fa-angle-right" aria-hidden="true"></i>'
|
||||
],
|
||||
autoplayHoverPause: true,
|
||||
responsive: {
|
||||
0: {
|
||||
items: 1,
|
||||
margin: 0
|
||||
},
|
||||
576: {
|
||||
items: 2,
|
||||
},
|
||||
992: {
|
||||
items: 3
|
||||
}
|
||||
}
|
||||
})
|
|
@ -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,90 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="id">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<title>Analisis AI - NutriPosy</title>
|
||||
<link rel="icon" type="image/png" href="images/nutriposy.png">
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
|
||||
<link href="{{ asset('css/font-awesome.min.css') }}" rel="stylesheet" />
|
||||
<link href="{{ asset('css/style.css') }}" rel="stylesheet" />
|
||||
<link href="{{ asset('css/responsive.css') }}" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="hero_area">
|
||||
<header class="header_section">
|
||||
<div class="header_bottom">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg custom_nav-container">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="images/nutriposy.png" alt="NutriPosy Logo">
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<div class="d-flex mr-auto flex-column flex-lg-row align-items-center">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="{{ route('timbangan.index') }}">Timbangan Pintar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4 style="font-size: 32px;">Hasil <span>Analisis AI</span></h4>
|
||||
<div class="card p-4 shadow-sm">
|
||||
<p><strong>Nama:</strong> {{ $nama }}</p>
|
||||
<p><strong>Umur:</strong> {{ $umur }} bulan</p>
|
||||
<p><strong>Berat:</strong> {{ $berat }} kg</p>
|
||||
<p><strong>Tinggi:</strong> {{ $tinggi }} cm</p>
|
||||
<p><strong>Catatan:</strong> {{ $catatan ?: '-' }}</p>
|
||||
<p><strong>Hasil Analisis:</strong> {{ $hasil_analisis }}</p>
|
||||
<p><strong>Tanggal Pemeriksaan:</strong> {{ \Carbon\Carbon::parse($tanggal)->format('d-m-Y') }}</p>
|
||||
|
||||
|
||||
</div>
|
||||
<p></p>
|
||||
<a href="{{ route('timbangan.index') }}" class="btn btn-secondary">Kembali ke Timbangan</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- footer section -->
|
||||
<footer class="footer_section">
|
||||
<div class="container">
|
||||
<p>
|
||||
© <span id="displayYear"></span> All Rights Reserved By
|
||||
<a href="#">NutriPosy</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<!-- ✅ Tambahkan jQuery & Bootstrap JS sebelum </body> -->
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
<!-- ✅ Script untuk auto-close alert -->
|
||||
<script>
|
||||
setTimeout(function () {
|
||||
$('.alert').alert('close');
|
||||
}, 3000); // hilang setelah 3 detik
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<!-- Basic -->
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<!-- Mobile Metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<!-- Site Metas -->
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="author" content="" />
|
||||
|
||||
<title>NutriPosy</title>
|
||||
<link rel="icon" type="image/png" href="images/nutriposy.png">
|
||||
|
||||
<!-- bootstrap core css -->
|
||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
|
||||
|
||||
<!-- fonts style -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- owl slider stylesheet -->
|
||||
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
|
||||
|
||||
<!-- font awesome style -->
|
||||
<link href="css/font-awesome.min.css" rel="stylesheet" />
|
||||
<!-- nice select -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-nice-select/1.1.0/css/nice-select.min.css" integrity="sha256-mLBIhmBvigTFWPSCtvdu6a76T+3Xyt+K571hupeFLg4=" crossorigin="anonymous" />
|
||||
<!-- datepicker -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker.css">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="css/style.css" rel="stylesheet" />
|
||||
<!-- responsive style -->
|
||||
<link href="css/responsive.css" rel="stylesheet" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="hero_area">
|
||||
<!-- header section starts -->
|
||||
<header class="header_section">
|
||||
<div class="header_bottom">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg custom_nav-container">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="images/nutriposy.png" alt="">
|
||||
</a>
|
||||
|
||||
<!-- ✅ PERBAIKAN tombol hamburger -->
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<div class="d-flex mr-auto flex-column flex-lg-row align-items-center">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="{{ route('dashboard') }}">Beranda</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route('timbangan.index') }}">Timbangan Pintar</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route('riwayat.index') }}">Riwayat Pemeriksaan</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<!-- end header section -->
|
||||
|
||||
@yield('content') <!-- Tempat konten halaman -->
|
||||
|
||||
<!-- footer section -->
|
||||
<footer class="footer_section">
|
||||
<div class="container">
|
||||
<p>
|
||||
© <span id="displayYear"></span> All Rights Reserved By
|
||||
<a href="#">NutriPosy</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<!-- ✅ Tambahkan jQuery & Bootstrap JS sebelum </body> -->
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,64 @@
|
|||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<!-- slider / hero section -->
|
||||
<section class="slider_section">
|
||||
<div id="customCarousel1" class="carousel slide" data-ride="carousel">
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="detail-box">
|
||||
<h1>
|
||||
Selamat Datang di <br>
|
||||
<span>NutriPosy</span>
|
||||
</h1>
|
||||
<p>
|
||||
Platform digital untuk memantau pertumbuhan dan status gizi anak secara mudah dan akurat di Posyandu.
|
||||
</p>
|
||||
<a href="{{ route('grafik.pertumbuhan') }}">Lihat Grafik Pertumbuhan</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="img-box">
|
||||
<img src="{{ asset('images/nutriposybanner.png') }}" alt="Ilustrasi anak sehat">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- menu utama section -->
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4>Menu <span>Utama</span></h4>
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-6 mb-4">
|
||||
<div class="card text-center shadow p-4">
|
||||
<img src="{{ asset('images/daftar_balita.png') }}" class="card-img-top mx-auto" alt="Pendaftaran Balita" style="width: 100px; height: 100px; object-fit: cover; margin-top: 20px;">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Pendaftaran Balita</h5>
|
||||
<p class="card-text">Daftarkan data balita untuk pemantauan gizi dan kesehatan.</p>
|
||||
<a href="{{ route('balita.create') }}" class="btn-custom">Masuk</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 mb-4">
|
||||
<div class="card text-center shadow p-4">
|
||||
<img src="{{ asset('images/data_balita.png') }}" class="card-img-top mx-auto" alt="Data Balita" style="width: 100px; height: 100px; object-fit: cover; margin-top: 20px;">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Data Balita</h5>
|
||||
<p class="card-text">Lihat dan kelola data balita yang sudah terdaftar.</p>
|
||||
<a href="{{ route('balita.index') }}" class="btn-custom">Masuk</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
|
@ -0,0 +1,251 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="id">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<title>Data Balita - NutriPosy</title>
|
||||
<link rel="icon" type="image/png" href="images/nutriposy.png">
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
|
||||
<link href="{{ asset('css/font-awesome.min.css') }}" rel="stylesheet" />
|
||||
<link href="{{ asset('css/style.css') }}" rel="stylesheet" />
|
||||
<link href="{{ asset('css/responsive.css') }}" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="hero_area">
|
||||
<header class="header_section">
|
||||
<div class="header_bottom">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg custom_nav-container">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="images/nutriposy.png" alt="NutriPosy Logo">
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<div class="d-flex mr-auto flex-column flex-lg-row align-items-center">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="{{ route('dashboard') }}">Beranda</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4>Data <span>Balita</span></h4>
|
||||
|
||||
@if(session('success'))
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
{{ session('success') }}
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
@endif
|
||||
<!-- Form Pencarian Otomatis -->
|
||||
<form action="{{ route('balita.index') }}" method="GET" class="mb-3" id="searchForm">
|
||||
<div class="input-group">
|
||||
<input type="text" name="search" class="form-control" placeholder="Cari berdasarkan Nama Anak atau NIK" value="{{ request('search') }}" id="searchInput" autocomplete="off">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th>NIK</th>
|
||||
<th>Nama Anak</th>
|
||||
<th>Jenis Kelamin</th>
|
||||
<th>Umur</th>
|
||||
<th>Nama Ibu</th>
|
||||
<th>Aksi</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($balitas as $balita)
|
||||
<tr>
|
||||
<td>{{ $balita->nik }}</td>
|
||||
<td>{{ $balita->nama_anak }}</td>
|
||||
<td>{{ $balita->jenis_kelamin }}</td>
|
||||
<td>{{ number_format($balita->umur_bulan, 1) }} bulan</td>
|
||||
|
||||
|
||||
<td>{{ $balita->ibu_kandung }}</td>
|
||||
<td>
|
||||
<button type="button" class="btn btn-info btn-sm" data-toggle="modal" data-target="#showModal{{ $balita->id }}" title="Lihat">
|
||||
<i class="fa fa-eye"></i>
|
||||
</button>
|
||||
<button type="button" class="btn btn-warning btn-sm" data-toggle="modal" data-target="#editModal{{ $balita->id }}" title="Edit">
|
||||
<i class="fa fa-edit"></i>
|
||||
</button>
|
||||
<button type="button" class="btn btn-danger btn-sm" data-toggle="modal" data-target="#deleteModal{{ $balita->id }}" title="Hapus">
|
||||
<i class="fa fa-trash"></i>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- Show Modal -->
|
||||
<div class="modal fade" id="showModal{{ $balita->id }}" tabindex="-1" role="dialog" aria-labelledby="showModalLabel{{ $balita->id }}" aria-hidden="true">
|
||||
<div class="modal-dialog modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="showModalLabel{{ $balita->id }}">Detail Balita</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Tutup">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p><strong>NIK:</strong> {{ $balita->nik }}</p>
|
||||
<p><strong>Nama Anak:</strong> {{ $balita->nama_anak }}</p>
|
||||
<p><strong>Jenis Kelamin:</strong> {{ $balita->jenis_kelamin }}</p>
|
||||
<p><strong>Umur:</strong> {{ number_format($balita->umur_bulan, 1) }} bulan</p>
|
||||
|
||||
|
||||
<p><strong>Tempat Lahir:</strong> {{ $balita->tempat_lahir }}</p>
|
||||
<p><strong>Nama Ibu:</strong> {{ $balita->ibu_kandung }}</p>
|
||||
<p><strong>Nama Ayah:</strong> {{ $balita->nama_ayah }}</p>
|
||||
<p><strong>Alamat:</strong> {{ $balita->alamat }}</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Edit Modal -->
|
||||
<div class="modal fade" id="editModal{{ $balita->id }}" tabindex="-1" role="dialog" aria-labelledby="editModalLabel{{ $balita->id }}" aria-hidden="true">
|
||||
<div class="modal-dialog modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="editModalLabel{{ $balita->id }}">Edit Balita</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Tutup">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<form action="{{ route('balita.update', $balita->id) }}" method="POST">
|
||||
@csrf
|
||||
@method('PUT')
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label for="nik">NIK</label>
|
||||
<input type="text" class="form-control" name="nik" value="{{ $balita->nik }}" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="nama_anak">Nama Anak</label>
|
||||
<input type="text" class="form-control" name="nama_anak" value="{{ $balita->nama_anak }}" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="jenis_kelamin">Jenis Kelamin</label>
|
||||
<select name="jenis_kelamin" class="form-control" required>
|
||||
<option value="Laki-laki" {{ $balita->jenis_kelamin == 'Laki-laki' ? 'selected' : '' }}>Laki-laki</option>
|
||||
<option value="Perempuan" {{ $balita->jenis_kelamin == 'Perempuan' ? 'selected' : '' }}>Perempuan</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="tanggal_lahir">Tanggal Lahir</label>
|
||||
<input type="date" name="tanggal_lahir" class="form-control" value="{{ $balita->tanggal_lahir }}" required>
|
||||
</div>
|
||||
<!-- Tempat Lahir -->
|
||||
<div class="form-group">
|
||||
<label for="tempat_lahir">Tempat Lahir</label>
|
||||
<input type="text" class="form-control" name="tempat_lahir" value="{{ $balita->tempat_lahir }}" required>
|
||||
</div>
|
||||
<!-- Nama Ibu Kandung -->
|
||||
<div class="form-group">
|
||||
<label for="ibu_kandung">Nama Ibu</label>
|
||||
<input type="text" class="form-control" name="ibu_kandung" value="{{ $balita->ibu_kandung }}" required>
|
||||
</div>
|
||||
|
||||
<!-- Nama Ayah -->
|
||||
<div class="form-group">
|
||||
<label for="nama_ayah">Nama Ayah</label>
|
||||
<input type="text" class="form-control" name="nama_ayah" value="{{ $balita->nama_ayah }}" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="alamat">Alamat</label>
|
||||
<textarea name="alamat" class="form-control" rows="3" required>{{ $balita->alamat }}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
|
||||
<button type="submit" class="btn btn-primary">Simpan Perubahan</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Delete Modal -->
|
||||
<div class="modal fade" id="deleteModal{{ $balita->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteModalLabel{{ $balita->id }}" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<form action="{{ route('balita.destroy', $balita->id) }}" method="POST">
|
||||
@csrf
|
||||
@method('DELETE')
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="deleteModalLabel{{ $balita->id }}">Konfirmasi Hapus</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Tutup">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p>Apakah Anda yakin ingin menghapus data balita dengan nama <strong>{{ $balita->nama_anak }}</strong>?</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Batal</button>
|
||||
<button type="submit" class="btn btn-danger">Hapus</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- footer section -->
|
||||
<footer class="footer_section">
|
||||
<div class="container">
|
||||
<p>
|
||||
© <span id="displayYear"></span> All Rights Reserved By
|
||||
<a href="#">NutriPosy</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
document.getElementById('searchInput').addEventListener('input', function () {
|
||||
clearTimeout(this.delayTimer);
|
||||
this.delayTimer = setTimeout(function () {
|
||||
document.getElementById('searchForm').submit();
|
||||
}, 500); // delay 500ms untuk menghindari submit terlalu sering
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<script src="{{ asset('js/jquery-3.4.1.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap.js') }}"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,303 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="id">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<title>Grafik Pertumbuhan - NutriPosy</title>
|
||||
<link rel="icon" type="image/png" href="images/nutriposy.png">
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
|
||||
<link href="{{ asset('css/font-awesome.min.css') }}" rel="stylesheet" />
|
||||
<link href="{{ asset('css/style.css') }}" rel="stylesheet" />
|
||||
<link href="{{ asset('css/responsive.css') }}" rel="stylesheet" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="hero_area">
|
||||
<header class="header_section">
|
||||
<div class="header_bottom">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg custom_nav-container">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="images/nutriposy.png" alt="NutriPosy Logo">
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<div class="d-flex mr-auto flex-column flex-lg-row align-items-center">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="{{ route('dashboard') }}">Beranda</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4>Grafik <span>Pertumbuhan</span></h4>
|
||||
|
||||
<!-- Search and Dropdown for Baby Name -->
|
||||
<form method="GET" action="{{ route('grafik.pertumbuhan') }}" class="mb-4" id="searchForm">
|
||||
<div class="form-group">
|
||||
<label for="search_nama">Cari Nama Balita</label>
|
||||
<input type="text" id="search_nama" class="form-control" placeholder="Ketik nama balita..." oninput="filterNames()">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="nama">Pilih Nama Balita</label>
|
||||
<select id="nama" name="nama" class="form-control" required>
|
||||
<option value="">-- Pilih Nama --</option>
|
||||
@foreach($namaBalitas as $balita)
|
||||
<option value="{{ $balita->nama }}" {{ $balita->nama == old('nama', $namaSearch) ? 'selected' : '' }}>
|
||||
{{ $balita->nama }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary">Tampilkan Grafik</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@if($riwayatPemeriksaan->count() > 0)
|
||||
<!-- Display Weight and Height Charts -->
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h5>Grafik Berat Badan</h5>
|
||||
<canvas id="weightChart"></canvas>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h5>Grafik Tinggi Badan</h5>
|
||||
<canvas id="heightChart"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
@else
|
||||
<div class="alert alert-info">Silakan pilih balita untuk melihat grafik pertumbuhan.</div>
|
||||
@endif
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@if($riwayatPemeriksaan->count() > 0)
|
||||
<script>
|
||||
// Function to filter the dropdown options based on search input
|
||||
function filterNames() {
|
||||
var input = document.getElementById('search_nama').value.toLowerCase();
|
||||
var select = document.getElementById('nama');
|
||||
var options = select.getElementsByTagName('option');
|
||||
|
||||
// Loop through the options and hide those that don't match the search query
|
||||
for (var i = 1; i < options.length; i++) { // Start from 1 to skip the first empty option
|
||||
var option = options[i];
|
||||
if (option.text.toLowerCase().includes(input)) {
|
||||
option.style.display = "block"; // Show option if it matches
|
||||
} else {
|
||||
option.style.display = "none"; // Hide option if it doesn't match
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Format the date to DD/MM/YYYY
|
||||
function formatDate(dateString) {
|
||||
const date = new Date(dateString);
|
||||
const day = ('0' + date.getDate()).slice(-2);
|
||||
const month = ('0' + (date.getMonth() + 1)).slice(-2);
|
||||
const year = date.getFullYear();
|
||||
return day + '/' + month + '/' + year;
|
||||
}
|
||||
|
||||
// Initial Data for the chart (if available)
|
||||
var initialData = @json($riwayatPemeriksaan);
|
||||
var selectedName = '{{ old('nama', $namaSearch) }}'; // Selected name from the dropdown
|
||||
|
||||
var labels = initialData.map(function (item) {
|
||||
return formatDate(item.tanggal_pemeriksaan); // Format the date for X axis
|
||||
});
|
||||
|
||||
var beratData = initialData.map(function (item) {
|
||||
return item.berat; // Weight for Y axis
|
||||
});
|
||||
|
||||
var tinggiData = initialData.map(function (item) {
|
||||
return item.tinggi; // Height for Y axis
|
||||
});
|
||||
|
||||
// Create two separate charts: one for weight and one for height
|
||||
var weightCtx = document.getElementById('weightChart').getContext('2d');
|
||||
var heightCtx = document.getElementById('heightChart').getContext('2d');
|
||||
|
||||
var weightChart = new Chart(weightCtx, {
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: labels,
|
||||
datasets: [{
|
||||
label: 'Berat (kg)',
|
||||
data: beratData,
|
||||
borderColor: 'rgba(75, 192, 192, 1)',
|
||||
backgroundColor: 'rgba(75, 192, 192, 0.2)',
|
||||
fill: false,
|
||||
},
|
||||
{
|
||||
label: 'Normal BB Laki-laki (kg)',
|
||||
data: [2.5, 3.4, 5.1, 6.4, 7.2, 7.8], // Berat Normal Laki-laki (BB/U)
|
||||
borderColor: 'rgba(255, 99, 132, 1)',
|
||||
backgroundColor: 'rgba(255, 99, 132, 0.2)',
|
||||
fill: false,
|
||||
},
|
||||
{
|
||||
label: 'Normal BB Perempuan (kg)',
|
||||
data: [2.4, 3.2, 4.6, 5.8, 6.7, 7.0], // Berat Normal Perempuan (BB/U)
|
||||
borderColor: 'rgba(153, 102, 255, 1)',
|
||||
backgroundColor: 'rgba(153, 102, 255, 0.2)',
|
||||
fill: false,
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
responsive: true,
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Grafik Berat Badan ' + selectedName // Display the name dynamically in the title
|
||||
}
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Tanggal Pemeriksaan'
|
||||
}
|
||||
},
|
||||
y: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Berat Badan (kg)'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
var heightChart = new Chart(heightCtx, {
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: labels,
|
||||
datasets: [{
|
||||
label: 'Tinggi (cm)',
|
||||
data: tinggiData,
|
||||
borderColor: 'rgba(75, 192, 192, 1)',
|
||||
backgroundColor: 'rgba(75, 192, 192, 0.2)',
|
||||
fill: false,
|
||||
},
|
||||
{
|
||||
label: 'Normal PB Laki-laki (cm)',
|
||||
data: [46.1, 57.3, 63.6, 67.3, 69.2], // Tinggi Normal Laki-laki (PB/U)
|
||||
borderColor: 'rgba(255, 99, 132, 1)',
|
||||
backgroundColor: 'rgba(255, 99, 132, 0.2)',
|
||||
fill: false,
|
||||
},
|
||||
{
|
||||
label: 'Normal PB Perempuan (cm)',
|
||||
data: [45.4, 55.6, 61.2, 65.0, 67.3], // Tinggi Normal Perempuan (PB/U)
|
||||
borderColor: 'rgba(153, 102, 255, 1)',
|
||||
backgroundColor: 'rgba(153, 102, 255, 0.2)',
|
||||
fill: false,
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
responsive: true,
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Grafik Tinggi Badan ' + selectedName // Display the name dynamically in the title
|
||||
}
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Tanggal Pemeriksaan'
|
||||
}
|
||||
},
|
||||
y: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Tinggi Badan (cm)'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// AJAX for dynamic chart update based on selected name or search
|
||||
document.getElementById('nama').addEventListener('change', function (e) {
|
||||
var selectedName = e.target.value;
|
||||
|
||||
// Send AJAX request to fetch the data for the selected name
|
||||
fetch('{{ route('grafik.pertumbuhan') }}?nama=' + selectedName, {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
}
|
||||
})
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
// Update the chart with new data
|
||||
var labels = data.map(function (item) {
|
||||
return formatDate(item.tanggal_pemeriksaan);
|
||||
});
|
||||
|
||||
var beratData = data.map(function (item) {
|
||||
return item.berat;
|
||||
});
|
||||
|
||||
var tinggiData = data.map(function (item) {
|
||||
return item.tinggi;
|
||||
});
|
||||
|
||||
// Update weight chart data
|
||||
weightChart.data.labels = labels;
|
||||
weightChart.data.datasets[0].data = beratData;
|
||||
weightChart.update();
|
||||
|
||||
// Update height chart data
|
||||
heightChart.data.labels = labels;
|
||||
heightChart.data.datasets[0].data = tinggiData;
|
||||
heightChart.update();
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error fetching data:', error);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@endif
|
||||
|
||||
|
||||
<!-- footer section -->
|
||||
<footer class="footer_section">
|
||||
<div class="container">
|
||||
<p>
|
||||
© <span id="displayYear"></span> All Rights Reserved By
|
||||
<a href="#">NutriPosy</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script src="{{ asset('js/jquery-3.4.1.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap.js') }}"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,202 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<!-- Basic -->
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<!-- Mobile Metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<!-- Site Metas -->
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="author" content="" />
|
||||
|
||||
<title>NutriPosy</title>
|
||||
<link rel="icon" type="image/png" href="images/nutriposy.png">
|
||||
|
||||
<!-- bootstrap core css -->
|
||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
|
||||
|
||||
<!-- fonts style -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- owl slider stylesheet -->
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
|
||||
|
||||
<!-- font awesome style -->
|
||||
<link href="css/font-awesome.min.css" rel="stylesheet" />
|
||||
<!-- nice select -->
|
||||
<link rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/jquery-nice-select/1.1.0/css/nice-select.min.css"
|
||||
integrity="sha256-mLBIhmBvigTFWPSCtvdu6a76T+3Xyt+K571hupeFLg4=" crossorigin="anonymous" />
|
||||
<!-- datepicker -->
|
||||
<link rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker.css">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="css/style.css" rel="stylesheet" />
|
||||
<!-- responsive style -->
|
||||
<link href="css/responsive.css" rel="stylesheet" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="hero_area">
|
||||
<!-- header section starts -->
|
||||
<header class="header_section">
|
||||
<div class="header_bottom">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg custom_nav-container">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="images/nutriposy.png" alt="">
|
||||
</a>
|
||||
|
||||
<!-- ✅ PERBAIKAN tombol hamburger -->
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse"
|
||||
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
|
||||
aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<div class="d-flex mr-auto flex-column flex-lg-row align-items-center">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="{{ route('dashboard') }}">Beranda</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<!-- end header section -->
|
||||
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4>Pendaftaran <span>Balita</span></h4>
|
||||
|
||||
<!-- ✅ ALERT BERHASIL -->
|
||||
@if(session('success'))
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
{{ session('success') }}
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<form action="{{ route('balita.store') }}" method="POST">
|
||||
@csrf
|
||||
<div class="form-row">
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="nik">NIK</label>
|
||||
<input type="text" name="nik" class="form-control @error('nik') is-invalid @enderror" id="nik"
|
||||
value="{{ old('nik') }}" placeholder="Masukkan NIK">
|
||||
@error('nik')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="nama_anak">Nama Anak</label>
|
||||
<input type="text" name="nama_anak" class="form-control @error('nama_anak') is-invalid @enderror"
|
||||
id="nama_anak" value="{{ old('nama_anak') }}" placeholder="Masukkan nama anak">
|
||||
@error('nama_anak')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="jenis_kelamin">Jenis Kelamin</label>
|
||||
<select name="jenis_kelamin" class="form-control @error('jenis_kelamin') is-invalid @enderror"
|
||||
id="jenis_kelamin">
|
||||
<option value="">-- Pilih Jenis Kelamin --</option>
|
||||
<option value="Laki-laki" {{ old('jenis_kelamin') == 'Laki-laki' ? 'selected' : '' }}>Laki-laki</option>
|
||||
<option value="Perempuan" {{ old('jenis_kelamin') == 'Perempuan' ? 'selected' : '' }}>Perempuan</option>
|
||||
</select>
|
||||
@error('jenis_kelamin')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="tanggal_lahir">Tanggal Lahir</label>
|
||||
<input type="date" name="tanggal_lahir"
|
||||
class="form-control @error('tanggal_lahir') is-invalid @enderror" id="tanggal_lahir"
|
||||
value="{{ old('tanggal_lahir') }}">
|
||||
@error('tanggal_lahir')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="tempat_lahir">Tempat Lahir</label>
|
||||
<input type="text" name="tempat_lahir"
|
||||
class="form-control @error('tempat_lahir') is-invalid @enderror" id="tempat_lahir"
|
||||
value="{{ old('tempat_lahir') }}" placeholder="Masukkan tempat lahir">
|
||||
@error('tempat_lahir')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="ibu_kandung">Nama Ibu Kandung</label>
|
||||
<input type="text" name="ibu_kandung"
|
||||
class="form-control @error('ibu_kandung') is-invalid @enderror" id="ibu_kandung"
|
||||
value="{{ old('ibu_kandung') }}" placeholder="Masukkan nama ibu">
|
||||
@error('ibu_kandung')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-lg-4">
|
||||
<label for="nama_ayah">Nama Ayah</label>
|
||||
<input type="text" name="nama_ayah" class="form-control @error('nama_ayah') is-invalid @enderror"
|
||||
id="nama_ayah" value="{{ old('nama_ayah') }}" placeholder="Masukkan nama ayah">
|
||||
@error('nama_ayah')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="form-group col-lg-8">
|
||||
<label for="alamat">Alamat</label>
|
||||
<textarea name="alamat" class="form-control @error('alamat') is-invalid @enderror" id="alamat" rows="2"
|
||||
placeholder="Masukkan alamat lengkap">{{ old('alamat') }}</textarea>
|
||||
@error('alamat')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-box">
|
||||
<button type="submit" class="btn btn-primary">Simpan Data</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- footer section -->
|
||||
<footer class="footer_section">
|
||||
<div class="container">
|
||||
<p>
|
||||
© <span id="displayYear"></span> All Rights Reserved By
|
||||
<a href="#">NutriPosy</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<!-- ✅ Tambahkan jQuery & Bootstrap JS sebelum </body> -->
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
<!-- ✅ Script untuk auto-close alert -->
|
||||
<script>
|
||||
setTimeout(function () {
|
||||
$('.alert').alert('close');
|
||||
}, 3000); // hilang setelah 3 detik
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,152 @@
|
|||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4>Riwayat <span>Pemeriksaan</span></h4>
|
||||
|
||||
<!-- Alert Success & Error -->
|
||||
@if(session('success'))
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
{{ session('success') }}
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
</div>
|
||||
@endif
|
||||
@if(session('error'))
|
||||
<div class="alert alert-danger">
|
||||
{{ session('error') }}
|
||||
</div>
|
||||
@endif
|
||||
<!-- Form Pencarian Otomatis -->
|
||||
<form action="{{ route('riwayat.index') }}" method="GET" class="mb-3" id="searchForm">
|
||||
<div class="input-group">
|
||||
<input type="text" name="search" class="form-control" placeholder="Cari berdasarkan Nama" value="{{ request('search') }}" id="searchInput" autocomplete="off">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<!-- Table Section -->
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th>Nama</th>
|
||||
<th>Umur</th>
|
||||
<th>Berat</th>
|
||||
<th>Tinggi</th>
|
||||
<th>Hasil Analisis</th>
|
||||
<th>Tanggal Pemeriksaan</th>
|
||||
<th>Aksi</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($riwayatPemeriksaan as $pemeriksaan)
|
||||
<tr>
|
||||
<td>{{ $pemeriksaan->nama }}</td>
|
||||
<td>{{ $pemeriksaan->umur }}</td>
|
||||
<td>{{ $pemeriksaan->berat }} kg</td>
|
||||
<td>{{ $pemeriksaan->tinggi }} cm</td>
|
||||
<td>{{ $pemeriksaan->hasil_analisis }}</td>
|
||||
<td>{{ $pemeriksaan->tanggal_pemeriksaan->format('d-m-Y') }}</td>
|
||||
<td>
|
||||
<!-- Edit Icon Bigger -->
|
||||
<button type="button" class="btn btn-link p-0" style="font-size: 22px;" data-toggle="modal" data-target="#editModal{{ $pemeriksaan->id }}" title="Edit">
|
||||
<i class="fa fa-edit text-primary"></i>
|
||||
</button>
|
||||
|
||||
<!-- Delete Icon Bigger -->
|
||||
<button type="button" class="btn btn-link p-0 ml-2" style="font-size: 22px;" data-toggle="modal" data-target="#deleteModal{{ $pemeriksaan->id }}" title="Hapus">
|
||||
<i class="fa fa-trash text-danger"></i>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- Modal Edit -->
|
||||
<div class="modal fade" id="editModal{{ $pemeriksaan->id }}" tabindex="-1" role="dialog" aria-labelledby="editModalLabel{{ $pemeriksaan->id }}" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<form action="{{ route('riwayat.update', $pemeriksaan->id) }}" method="POST">
|
||||
@csrf
|
||||
@method('PUT')
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="editModalLabel{{ $pemeriksaan->id }}">Edit Pemeriksaan</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Tutup">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label>Nama</label>
|
||||
<input type="text" name="nama" value="{{ $pemeriksaan->nama }}" class="form-control" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Umur</label>
|
||||
<input type="number" name="umur" value="{{ $pemeriksaan->umur }}" class="form-control" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Berat (kg)</label>
|
||||
<input type="number" step="0.01" name="berat" value="{{ $pemeriksaan->berat }}" class="form-control" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Tinggi (cm)</label>
|
||||
<input type="number" step="0.01" name="tinggi" value="{{ $pemeriksaan->tinggi }}" class="form-control" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Hasil Analisis</label>
|
||||
<textarea name="hasil_analisis" class="form-control" required>{{ $pemeriksaan->hasil_analisis }}</textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Tanggal Pemeriksaan</label>
|
||||
<input type="date" name="tanggal_pemeriksaan" value="{{ $pemeriksaan->tanggal_pemeriksaan->format('Y-m-d') }}" class="form-control" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="submit" class="btn btn-success">Simpan</button>
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Batal</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Modal Edit -->
|
||||
|
||||
<!-- Modal Delete -->
|
||||
<div class="modal fade" id="deleteModal{{ $pemeriksaan->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteModalLabel{{ $pemeriksaan->id }}" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<form action="{{ route('riwayat.destroy', $pemeriksaan->id) }}" method="POST">
|
||||
@csrf
|
||||
@method('DELETE')
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="deleteModalLabel{{ $pemeriksaan->id }}">Konfirmasi Hapus</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Tutup">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
Apakah Anda yakin ingin menghapus data pemeriksaan <strong>{{ $pemeriksaan->nama }}</strong>?
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="submit" class="btn btn-danger">Hapus</button>
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Batal</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Modal Delete -->
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<script>
|
||||
document.getElementById('searchInput').addEventListener('input', function () {
|
||||
clearTimeout(this.delayTimer);
|
||||
this.delayTimer = setTimeout(function () {
|
||||
document.getElementById('searchForm').submit();
|
||||
}, 500); // delay 500ms untuk mencegah submit terlalu cepat
|
||||
});
|
||||
</script>
|
||||
|
||||
@endsection
|
|
@ -0,0 +1,204 @@
|
|||
@extends('app')
|
||||
|
||||
@section('content')
|
||||
<section class="book_section layout_padding">
|
||||
<div class="container">
|
||||
<h4 style="font-size: 36px;">Timbangan <span>Pintar</span></h4>
|
||||
|
||||
@if(session('success'))
|
||||
<div class="alert alert-success">
|
||||
{{ session('success') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if(session('error'))
|
||||
<div class="alert alert-danger">
|
||||
{{ session('error') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if($errors->any())
|
||||
<div class="alert alert-danger">
|
||||
<ul>
|
||||
@foreach($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="row">
|
||||
<!-- Tinggi Badan -->
|
||||
<div class="col-lg-6 col-md-6 mb-4">
|
||||
<div class="card text-center shadow p-4">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Tinggi Badan</h5>
|
||||
<p class="card-text" style="font-size: 80px; font-weight: bold;">
|
||||
<span id="tinggiOutput">{{ $tinggi ?? '-' }}</span>
|
||||
<span style="font-size: 24px; color: #00c6a9;">cm</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Berat Badan -->
|
||||
<div class="col-lg-6 col-md-6 mb-4">
|
||||
<div class="card text-center shadow p-4">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Berat Badan</h5>
|
||||
<p class="card-text" style="font-size: 80px; font-weight: bold;">
|
||||
<span id="beratOutput">{{ $berat ?? '-' }}</span>
|
||||
<span style="font-size: 24px; color: #00c6a9;">kg</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form action="{{ route('timbangan.store') }}" method="POST" id="formTimbangan">
|
||||
@csrf
|
||||
<input type="hidden" id="beratInput" name="berat" value="{{ $berat }}">
|
||||
<input type="hidden" id="tinggiInput" name="tinggi" value="{{ $tinggi }}">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="search_nama">Cari Nama Balita</label>
|
||||
<input type="text" id="search_nama" class="form-control" placeholder="Ketik nama balita...">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="nama">Pilih Nama Balita</label>
|
||||
<select id="nama" name="nama" class="form-control" required>
|
||||
<option value="">-- Pilih Nama --</option>
|
||||
@foreach($balitas as $balita)
|
||||
<option value="{{ $balita->nama_anak }}"
|
||||
data-nik="{{ $balita->nik }}"
|
||||
data-tanggal-lahir="{{ $balita->tanggal_lahir }}">
|
||||
{{ $balita->nama_anak }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="nik">NIK</label>
|
||||
<input type="text" id="nik" name="nik" class="form-control" readonly required>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="umur">Umur (bulan)</label>
|
||||
<input type="number" id="umur" name="umur" class="form-control" required>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="tanggal_pemeriksaan">Tanggal Pemeriksaan</label>
|
||||
<input type="date" id="tanggal_pemeriksaan" name="tanggal_pemeriksaan" class="form-control" value="{{ date('Y-m-d') }}" required>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="hasil_analisis">Hasil Analisis</label>
|
||||
<select id="hasil_analisis" name="hasil_analisis" class="form-control" required>
|
||||
<option value="">-- Pilih Hasil Analisis --</option>
|
||||
<option value="Pertumbuhan Normal">Pertumbuhan Normal</option>
|
||||
<option value="Berpotensi Stunting">Berpotensi Stunting</option>
|
||||
<option value="Terindikasi Stunting">Terindikasi Stunting</option>
|
||||
<option value="Hasil Analisis AI">Hasil Analisis AI</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="catatan">Catatan Tambahan (misalnya alergi, keluhan)</label>
|
||||
<textarea name="catatan" id="catatan" class="form-control"></textarea>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary">Simpan</button>
|
||||
<button type="submit" class="btn btn-secondary" formaction="{{ route('analisis.ai') }}">Analisis AI</button>
|
||||
</form>
|
||||
|
||||
<hr>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<script>
|
||||
document.getElementById('nama').addEventListener('change', function () {
|
||||
const selected = this.options[this.selectedIndex];
|
||||
const nik = selected.getAttribute('data-nik');
|
||||
const tanggalLahir = selected.getAttribute('data-tanggal-lahir');
|
||||
|
||||
document.getElementById('nik').value = nik;
|
||||
|
||||
const birthDate = new Date(tanggalLahir);
|
||||
const today = new Date();
|
||||
let months = (today.getFullYear() - birthDate.getFullYear()) * 12;
|
||||
months += today.getMonth() - birthDate.getMonth();
|
||||
if (today.getDate() < birthDate.getDate()) {
|
||||
months -= 1;
|
||||
}
|
||||
document.getElementById('umur').value = months;
|
||||
});
|
||||
|
||||
document.getElementById('search_nama').addEventListener('input', function () {
|
||||
const keyword = this.value.toLowerCase();
|
||||
const options = document.querySelectorAll('#nama option');
|
||||
options.forEach(option => {
|
||||
option.style.display = option.text.toLowerCase().includes(keyword) ? 'block' : 'none';
|
||||
});
|
||||
});
|
||||
|
||||
function updateTimbangan() {
|
||||
fetch('/timbangan-data')
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
const tinggi = data.tinggi ?? '-';
|
||||
const berat = data.berat ?? '-';
|
||||
document.getElementById('tinggiOutput').innerText = tinggi;
|
||||
document.getElementById('beratOutput').innerText = berat;
|
||||
|
||||
document.getElementById('tinggiInput').value = tinggi;
|
||||
document.getElementById('beratInput').value = berat;
|
||||
})
|
||||
.catch(error => console.error('Gagal mengambil data timbangan:', error));
|
||||
}
|
||||
updateTimbangan();
|
||||
setInterval(updateTimbangan, 3000);
|
||||
|
||||
document.getElementById('formTimbangan').addEventListener('submit', function (e) {
|
||||
const berat = document.getElementById('beratInput').value;
|
||||
const tinggi = document.getElementById('tinggiInput').value;
|
||||
const hasilAnalisis = document.getElementById('hasil_analisis').value;
|
||||
|
||||
if (!berat || !tinggi || berat === '-' || tinggi === '-') {
|
||||
e.preventDefault();
|
||||
alert("Data berat dan tinggi belum tersedia.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!hasilAnalisis) {
|
||||
e.preventDefault();
|
||||
alert("Silakan pilih hasil analisis terlebih dahulu.");
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
function submitAnalisisAI() {
|
||||
const nama = document.getElementById('nama').value;
|
||||
const umur = document.getElementById('umur').value;
|
||||
const berat = document.getElementById('beratInput').value;
|
||||
const tinggi = document.getElementById('tinggiInput').value;
|
||||
const catatan = document.getElementById('catatan').value;
|
||||
|
||||
fetch("{{ route('analisis.ai') }}", {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"X-CSRF-TOKEN": "{{ csrf_token() }}",
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
body: JSON.stringify({ nama, umur, berat, tinggi, catatan })
|
||||
})
|
||||
.then(response => response.text())
|
||||
.then(() => {
|
||||
window.location.href = "{{ route('timbangan.index') }}";
|
||||
})
|
||||
.catch(error => alert('Gagal menganalisis dengan AI: ' + error));
|
||||
}
|
||||
</script>
|
||||
@endsection
|