add website project

This commit is contained in:
Ghaida 2025-07-31 13:05:44 +07:00
parent 01772b32e9
commit efefb0687d
81 changed files with 17727 additions and 0 deletions

18
hydrop_web/.editorconfig Normal file
View File

@ -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

65
hydrop_web/.env.example Normal file
View File

@ -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}"

11
hydrop_web/.gitattributes vendored Normal file
View File

@ -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

24
hydrop_web/.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
*.log
.DS_Store
.env
.env.backup
.env.production
.phpactor.json
.phpunit.result.cache
/.fleet
/.idea
/.nova
/.phpunit.cache
/.vscode
/.zed
/auth.json
/node_modules
/public/build
/public/hot
/public/storage
/storage/*.key
/storage/pail
/vendor
Homestead.json
Homestead.yaml
Thumbs.db

View File

@ -0,0 +1,196 @@
## ✅ STATUS: SETUP COMPLETE & FULLY TESTED!
Firebase Realtime Database telah berhasil disetup dan ditest untuk aplikasi IoT Laravel Anda!
### Test Results:
- ✅ Firebase Connection: **SUCCESS**
- ✅ Sensor Data Save: **SUCCESS** (Local ID: 6, Firebase Key: -OVA6h9GDiDxkrQVcJnW)
- ✅ Actuator Data Save: **SUCCESS** (Local ID: 5, Firebase Key: -OVA6jljxG2AiHmDSCm1)
- ✅ Umur Tanaman Data Save: **SUCCESS** (Local ID: 6, Firebase Key: -OVA9-BIlPolcOJVD43p)
- ✅ Realtime Data Retrieval: **SUCCESS**
- ✅ API Routes: **WORKING**
- ✅ Laravel Views Integration: **COMPLETE**
### Laravel Pages Updated:
- ✅ **Sensor Page**: Displays Local Database + Firebase data with tabs
- ✅ **Actuator Page**: Ready for Local Database + Firebase data with tabs
- ✅ **Umur Tanaman Page**: Ready for Local Database + Firebase data with tabs
- ✅ **Report Page**: Combines all data sources with date filtering + CSV export
### Data Counts:
- 📊 Firebase Sensor Records: **1**
- 📊 Firebase Actuator Records: **1**
- 📊 Firebase Umur Tanaman Records: **2**
- 📊 Total Firebase Records: **4**
## Struktur yang Telah Dibuat:
### 1. **Konfigurasi Firebase**
- ✅ `config/firebase.php` - Konfigurasi Firebase
- ✅ `app/Providers/FirebaseServiceProvider.php` - Service Provider
- ✅ `app/Services/FirebaseService.php` - Service class untuk Firebase operations
### 2. **Controller & API**
- ✅ `app/Http/Controllers/FirebaseController.php` - Controller untuk API Firebase
- ✅ `routes/api.php` - API routes untuk IoT devices
### 3. **Environment Configuration**
- ✅ Variable Firebase di `.env` file
## Cara Setup Firebase Project:
### Step 1: Buat Firebase Project
1. Buka [Firebase Console](https://console.firebase.google.com/)
2. Klik "Add project" atau "Create a project"
3. Masukkan nama project (contoh: `iot-hidroponik`)
4. Ikuti wizard setup
### Step 2: Enable Realtime Database
1. Di Firebase Console, pilih project Anda
2. Klik "Realtime Database" di sidebar
3. Klik "Create Database"
4. Pilih "Start in test mode" (untuk development)
5. Pilih location (contoh: `asia-southeast1`)
### Step 3: Dapatkan Database URL
1. Di halaman Realtime Database, copy URL database
2. Format URL: `https://YOUR_PROJECT_ID-default-rtdb.asia-southeast1.firebasedatabase.app/`
### Step 4: Buat Service Account
1. Buka "Project Settings" (gear icon)
2. Klik tab "Service accounts"
3. Klik "Generate new private key"
4. Download file JSON yang dihasilkan
5. Rename file menjadi `service-account.json`
6. Pindahkan ke `storage/app/firebase/service-account.json`
### Step 5: Update Environment Variables
Update file `.env` dengan nilai dari Firebase:
```env
FIREBASE_DATABASE_URL=https://YOUR_PROJECT_ID-default-rtdb.asia-southeast1.firebasedatabase.app/
FIREBASE_PROJECT_ID=your-project-id
```
## API Endpoints yang Tersedia:
### Testing & Setup
- `POST /api/firebase/test-connection` - Test koneksi Firebase
### Data Input (untuk IoT devices)
- `POST /api/iot/sensor` - Kirim data sensor
```json
{
"suhu": 25.5,
"kelembaban": 65.2
}
```
- `POST /api/iot/actuator` - Kirim data actuator
```json
{
"nama": "Pompa Air",
"status": "ON"
}
```
### Data Retrieval
- `GET /api/firebase/realtime-data` - Ambil data real-time
- `POST /api/firebase/sync-from-firebase` - Sync data dari Firebase ke database lokal
### Control
- `POST /api/firebase/update-actuator` - Update status actuator
```json
{
"firebase_key": "firebase-key-here",
"status": "OFF"
}
```
## Struktur Data di Firebase:
```
{
"sensor_data": {
"push_key_1": {
"suhu": 25.5,
"kelembaban": 65.2,
"timestamp": "2025-07-15T05:36:00.000Z",
"created_at": 1642234567
}
},
"actuator_data": {
"push_key_1": {
"nama": "Pompa Air",
"status": "ON",
"timestamp": "2025-07-15T05:36:00.000Z",
"created_at": 1642234567
}
}
}
```
## Testing Connection:
Setelah setup, test koneksi dengan:
```bash
curl -X POST http://localhost:8000/api/firebase/test-connection
```
## ESP32/Arduino Code Example:
```cpp
#include <WiFi.h>
#include <HTTPClient.h>
#include <ArduinoJson.h>
const char* ssid = "YOUR_WIFI_SSID";
const char* password = "YOUR_WIFI_PASSWORD";
const char* serverURL = "http://your-domain.com/api/iot";
void sendSensorData(float suhu, float kelembaban) {
if(WiFi.status() == WL_CONNECTED) {
HTTPClient http;
http.begin(serverURL + String("/sensor"));
http.addHeader("Content-Type", "application/json");
StaticJsonDocument<200> doc;
doc["suhu"] = suhu;
doc["kelembaban"] = kelembaban;
String jsonString;
serializeJson(doc, jsonString);
int httpResponseCode = http.POST(jsonString);
if(httpResponseCode > 0) {
Serial.println("Data sent successfully");
}
http.end();
}
}
```
## Security Notes:
1. **Jangan commit service-account.json ke git**
2. **Set Firebase Rules untuk production:**
```json
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
```
3. **Gunakan authentication untuk production**
## Troubleshooting:
1. **Connection failed**: Pastikan Database URL benar
2. **Permission denied**: Check Firebase Rules
3. **Service account error**: Pastikan file service-account.json valid
Firebase Realtime Database siap digunakan! 🚀

61
hydrop_web/README.md Normal file
View File

@ -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).

View File

@ -0,0 +1,53 @@
# User Accounts untuk Testing
Berikut adalah akun user yang telah dibuat untuk testing sistem login:
## Admin Account
- **Username:** Admin
- **Email:** admin@iot.com
- **Password:** admin123
## Test Account
- **Username:** Test User
- **Email:** test@iot.com
- **Password:** test123
## Demo Account
- **Username:** IoT User
- **Email:** user@example.com
- **Password:** password
## Additional Users
- **Username:** John Doe
- **Email:** john@iot.com
- **Password:** john123
- **Username:** Jane Smith
- **Email:** jane@iot.com
- **Password:** jane123
## Cara Menggunakan:
1. Buka http://localhost:8000/login
2. Masukkan **Email ATAU Username** dan password
3. Contoh login:
- Dengan email: `admin@iot.com` + `admin123`
- Dengan username: `Admin` + `admin123`
4. Klik Login untuk masuk ke dashboard
## Fitur Login:
✅ **Login dengan Email atau Username**
✅ **Validasi input yang fleksibel**
✅ **Session management**
✅ **Password hashing yang aman**
✅ **Error handling dan validation**
## Reset Database dan Seeder:
Jika ingin mereset database dan menjalankan ulang seeder:
```bash
php artisan migrate:fresh --seed
```
Perintah ini akan:
- Drop semua tabel
- Membuat ulang tabel dari migration
- Menjalankan seeder untuk membuat user default

View File

@ -0,0 +1,338 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
use App\Models\User;
use App\Models\Sensor;
use App\Models\Actuator;
use App\Models\UmurTanaman;
use App\Services\FirebaseService;
use Illuminate\Support\Facades\Session;
class AuthController extends Controller
{
protected $firebaseService;
public function __construct(FirebaseService $firebaseService)
{
$this->firebaseService = $firebaseService;
}
public function showLogin()
{
return view('auth.login');
}
public function login(Request $request)
{
// Debug untuk melihat data yang diterima
// dd($request->all());
$request->validate([
'login' => 'required|string',
'password' => 'required'
], [
'login.required' => 'Email atau Username harus diisi!',
'password.required' => 'Password harus diisi!'
]);
$loginField = $request->input('login');
$password = $request->input('password');
// Debug credential
// dd(['login_field' => $loginField, 'password' => $password]);
// Cek apakah input adalah email atau username
$fieldType = filter_var($loginField, FILTER_VALIDATE_EMAIL) ? 'email' : 'name';
$credentials = [
$fieldType => $loginField,
'password' => $password
];
if (Auth::attempt($credentials)) {
$request->session()->regenerate();
// Set session variables seperti di native PHP untuk kompatibilitas
$user = Auth::user();
$request->session()->put('username', $user->name);
$request->session()->put('email', $user->email);
return redirect()->route('dashboard');
}
return back()->withErrors([
'login' => 'Email/Username atau Password salah!',
])->withInput();
}
public function showRegister()
{
return view('auth.register');
}
public function register(Request $request)
{
$request->validate([
'username' => 'required|string|max:255|unique:users,name',
'email' => 'required|string|email|max:255|unique:users',
'password' => 'required|string|min:6|confirmed',
], [
'username.unique' => 'Username sudah digunakan.',
'email.unique' => 'Email sudah terdaftar.',
'password.min' => 'Password minimal 6 karakter.',
'password.confirmed' => 'Konfirmasi password tidak cocok.',
]);
$user = User::create([
'name' => $request->username,
'email' => $request->email,
'password' => Hash::make($request->password),
]);
return redirect()->route('login')->with('success', 'Akun berhasil dibuat! Silahkan login.');
}
public function logout(Request $request)
{
Auth::logout();
$request->session()->invalidate();
$request->session()->regenerateToken();
return redirect()->route('login');
}
public function dashboard()
{
if (!Auth::check()) {
return redirect()->route('login');
}
// Get latest data from Firebase for dashboard charts
$sensorData = $this->firebaseService->getAllSensorData();
$actuatorData = $this->firebaseService->getAllActuatorData();
// Get latest 10 records for charts
$latestSensors = array_slice($sensorData, 0, 10);
$latestActuators = array_slice($actuatorData, 0, 10);
return view('dashboard', compact('latestSensors', 'latestActuators'));
}
public function sensor()
{
if (!Auth::check()) {
return redirect()->route('login');
}
// Get data from Firebase only
$sensorData = $this->firebaseService->getAllSensorData();
return view('pages.sensor', compact('sensorData'));
}
public function actuator()
{
if (!Auth::check()) {
return redirect()->route('login');
}
// Get data from Firebase only
$actuatorData = $this->firebaseService->getAllActuatorData();
return view('pages.actuator', compact('actuatorData'));
}
public function umur()
{
if (!Auth::check()) {
return redirect()->route('login');
}
// Get data from Firebase only
$umurTanamanData = $this->firebaseService->getAllUmurTanamanData();
return view('pages.umur', compact('umurTanamanData'));
}
public function report(Request $request)
{
if (!Auth::check()) {
return redirect()->route('login');
}
// Get date filters from request
$dateFrom = $request->get('date_from');
$dateTo = $request->get('date_to');
$exportType = $request->get('export');
// Get report data from Firebase
$firebaseReportData = $this->firebaseService->getReportData($dateFrom, $dateTo);
// Get local data for comparison
$localSensorData = Sensor::when($dateFrom, function($query) use ($dateFrom) {
return $query->whereDate('waktu', '>=', $dateFrom);
})->when($dateTo, function($query) use ($dateTo) {
return $query->whereDate('waktu', '<=', $dateTo);
})->orderBy('waktu', 'desc')->get();
$localActuatorData = Actuator::when($dateFrom, function($query) use ($dateFrom) {
return $query->whereDate('waktu_aktif', '>=', $dateFrom);
})->when($dateTo, function($query) use ($dateTo) {
return $query->whereDate('waktu_aktif', '<=', $dateTo);
})->orderBy('waktu_aktif', 'desc')->get();
$localUmurTanamanData = UmurTanaman::when($dateFrom, function($query) use ($dateFrom) {
return $query->whereDate('tanggal_tanam', '>=', $dateFrom);
})->when($dateTo, function($query) use ($dateTo) {
return $query->whereDate('tanggal_tanam', '<=', $dateTo);
})->orderBy('tanggal_tanam', 'desc')->get();
// Export to CSV if requested
if ($exportType === 'csv') {
return $this->exportReportToCSV($firebaseReportData, $localSensorData, $localActuatorData, $localUmurTanamanData);
}
return view('pages.report', compact(
'firebaseReportData',
'localSensorData',
'localActuatorData',
'localUmurTanamanData',
'dateFrom',
'dateTo'
));
}
private function exportReportToCSV($firebaseData, $localSensorData, $localActuatorData, $localUmurTanamanData)
{
$filename = 'iot_report_' . date('Y-m-d_H-i-s') . '.csv';
$headers = [
'Content-Type' => 'text/csv',
'Content-Disposition' => "attachment; filename=\"$filename\"",
'Pragma' => 'no-cache',
'Expires' => '0'
];
$callback = function() use ($firebaseData, $localSensorData, $localActuatorData, $localUmurTanamanData) {
$output = fopen('php://output', 'w');
// Header CSV
fputcsv($output, ['Source', 'Tipe', 'ID', 'Data1', 'Data2', 'Data3', 'Waktu']);
// Firebase Sensor Data
foreach ($firebaseData['sensor'] as $sensor) {
fputcsv($output, [
'Firebase',
'Sensor',
$sensor['firebase_key'],
$sensor['suhu'],
$sensor['kelembaban'],
'',
$sensor['created_at']
]);
}
// Firebase Actuator Data
foreach ($firebaseData['actuator'] as $actuator) {
fputcsv($output, [
'Firebase',
'Actuator',
$actuator['firebase_key'],
$actuator['nama'],
$actuator['status'],
'',
$actuator['created_at']
]);
}
// Firebase Umur Tanaman Data
foreach ($firebaseData['umur_tanaman'] as $tanaman) {
fputcsv($output, [
'Firebase',
'Umur Tanaman',
$tanaman['firebase_key'],
$tanaman['jenis_tanaman'],
$tanaman['tanggal_tanam'],
$tanaman['umur_hari'] . ' hari',
$tanaman['created_at']
]);
}
// Local Database Sensor Data
foreach ($localSensorData as $sensor) {
fputcsv($output, [
'Local DB',
'Sensor',
$sensor->id,
$sensor->suhu,
$sensor->kelembaban,
'',
$sensor->waktu
]);
}
// Local Database Actuator Data
foreach ($localActuatorData as $actuator) {
fputcsv($output, [
'Local DB',
'Actuator',
$actuator->id,
$actuator->nama,
$actuator->status,
'',
$actuator->waktu_aktif
]);
}
// Local Database Umur Tanaman Data
foreach ($localUmurTanamanData as $tanaman) {
$periode = $tanaman->tanggal_tanam . " s/d " . ($tanaman->tanggal_panen ?? 'sekarang');
fputcsv($output, [
'Local DB',
'Umur Tanaman',
$tanaman->id,
$tanaman->nama,
$periode,
$tanaman->umur_hari . ' hari',
$tanaman->tanggal_tanam
]);
}
fclose($output);
};
return response()->stream($callback, 200, $headers);
}
public function help()
{
if (!Auth::check()) {
return redirect()->route('login');
}
return view('pages.help');
}
public function sendHelp(Request $request)
{
$request->validate([
'nama' => 'required|string|max:255',
'email' => 'required|email',
'pesan' => 'required|string'
]);
$nama = $request->nama;
$email = $request->email;
$pesan = $request->pesan;
// Nomor WhatsApp admin
$no_wa = '088803324481';
// Format teks untuk WhatsApp
$text = "Halo Admin,%0ASaya *$nama* (%20$email) ingin bertanya:%0A$pesan";
// Redirect ke WhatsApp
return redirect("https://wa.me/$no_wa?text=$text");
}
}

View File

@ -0,0 +1,8 @@
<?php
namespace App\Http\Controllers;
abstract class Controller
{
//
}

View File

@ -0,0 +1,276 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Services\FirebaseService;
use App\Models\Sensor;
use App\Models\Actuator;
use App\Models\UmurTanaman;
use Illuminate\Support\Facades\Log;
class FirebaseController extends Controller
{
protected $firebaseService;
public function __construct(FirebaseService $firebaseService)
{
$this->firebaseService = $firebaseService;
}
/**
* Test koneksi Firebase
*/
public function testConnection()
{
$result = $this->firebaseService->testConnection();
return response()->json([
'success' => $result,
'message' => $result ? 'Firebase connection successful' : 'Firebase connection failed'
]);
}
/**
* Endpoint untuk menerima data sensor dari IoT device
*/
public function receiveSensorData(Request $request)
{
$request->validate([
'temperature' => 'required|numeric',
'humidity' => 'required|numeric',
'ph' => 'required|numeric',
'tds' => 'required|numeric'
]);
$temperature = $request->temperature;
$humidity = $request->humidity;
$ph = $request->ph;
$tds = $request->tds;
// Simpan ke database lokal
$sensor = Sensor::create([
'temperature' => $temperature,
'humidity' => $humidity,
'ph' => $ph,
'tds' => $tds,
'waktu' => now()
]);
// Simpan ke Firebase
$firebaseKey = $this->firebaseService->saveSensorData($temperature, $humidity, $ph, $tds);
return response()->json([
'success' => true,
'message' => 'Data sensor berhasil disimpan',
'local_id' => $sensor->id,
'firebase_key' => $firebaseKey
]);
}
/**
* Endpoint untuk menerima data actuator dari IoT device
*/
public function receiveActuatorData(Request $request)
{
$request->validate([
'nama' => 'required|string',
'status' => 'required|string'
]);
$nama = $request->nama;
$status = $request->status;
// Simpan ke database lokal
$actuator = Actuator::create([
'nama' => $nama,
'status' => $status,
'waktu_aktif' => now()
]);
// Simpan ke Firebase
$firebaseKey = $this->firebaseService->saveActuatorData($nama, $status);
return response()->json([
'success' => true,
'message' => 'Data actuator berhasil disimpan',
'local_id' => $actuator->id,
'firebase_key' => $firebaseKey
]);
}
/**
* Terima data umur tanaman dari IoT device
*/
public function receiveUmurTanamanData(Request $request)
{
$request->validate([
'jenis_tanaman' => 'required|string',
'tanggal_tanam' => 'required|date',
'umur_hari' => 'required|integer|min:0',
'status' => 'sometimes|string'
]);
try {
// Simpan ke database lokal
$umurTanaman = UmurTanaman::create([
'nama' => $request->jenis_tanaman,
'tanggal_tanam' => $request->tanggal_tanam,
'umur_hari' => $request->umur_hari,
'status' => $request->status ?? 'aktif'
]);
// Simpan ke Firebase
$firebaseKey = $this->firebaseService->saveUmurTanamanData(
$request->jenis_tanaman,
$request->tanggal_tanam,
$request->umur_hari,
$request->status ?? 'aktif'
);
if ($firebaseKey) {
return response()->json([
'success' => true,
'message' => 'Data umur tanaman berhasil disimpan',
'local_id' => $umurTanaman->id,
'firebase_key' => $firebaseKey
]);
} else {
return response()->json([
'success' => false,
'message' => 'Data berhasil disimpan ke database lokal, tapi gagal ke Firebase',
'local_id' => $umurTanaman->id
], 206);
}
} catch (\Exception $e) {
Log::error('Error receiving umur tanaman data: ' . $e->getMessage());
return response()->json([
'success' => false,
'message' => 'Gagal menyimpan data umur tanaman',
'error' => $e->getMessage()
], 500);
}
}
/**
* Ambil data real-time dari Firebase
*/
public function getRealtimeData()
{
$data = $this->firebaseService->getRealtimeData();
return response()->json([
'success' => true,
'data' => $data
]);
}
/**
* Update status actuator
*/
public function updateActuatorStatus(Request $request)
{
$request->validate([
'firebase_key' => 'required|string',
'status' => 'required|string'
]);
$result = $this->firebaseService->updateActuatorStatus(
$request->firebase_key,
$request->status
);
return response()->json([
'success' => $result,
'message' => $result ? 'Status actuator berhasil diupdate' : 'Gagal mengupdate status actuator'
]);
}
/**
* Sync data dari Firebase ke database lokal
*/
public function syncFromFirebase()
{
// Ambil data sensor dari Firebase
$sensorData = $this->firebaseService->getLatestSensorData(50);
$syncedSensor = 0;
foreach ($sensorData as $data) {
if (isset($data['temperature']) && isset($data['humidity']) && isset($data['ph']) && isset($data['tds']) && isset($data['timestamp'])) {
Sensor::firstOrCreate([
'temperature' => $data['temperature'],
'humidity' => $data['humidity'],
'ph' => $data['ph'],
'tds' => $data['tds'],
'waktu' => $data['timestamp']
]);
$syncedSensor++;
}
}
// Ambil data actuator dari Firebase
$actuatorData = $this->firebaseService->getLatestActuatorData(50);
$syncedActuator = 0;
foreach ($actuatorData as $data) {
if (isset($data['nama']) && isset($data['status']) && isset($data['timestamp'])) {
Actuator::firstOrCreate([
'nama' => $data['nama'],
'status' => $data['status'],
'waktu_aktif' => $data['timestamp']
]);
$syncedActuator++;
}
}
return response()->json([
'success' => true,
'message' => 'Data berhasil disinkronisasi',
'synced_sensor' => $syncedSensor,
'synced_actuator' => $syncedActuator
]);
}
/**
* Get Firebase sensor data for testing
*/
public function getFirebaseSensorData()
{
$data = $this->firebaseService->getAllSensorData();
return response()->json([
'success' => true,
'count' => count($data),
'data' => $data
]);
}
/**
* Get Firebase actuator data for testing
*/
public function getFirebaseActuatorData()
{
$data = $this->firebaseService->getAllActuatorData();
return response()->json([
'success' => true,
'count' => count($data),
'data' => $data
]);
}
/**
* Get Firebase umur tanaman data for testing
*/
public function getFirebaseUmurTanamanData()
{
$data = $this->firebaseService->getAllUmurTanamanData();
return response()->json([
'success' => true,
'count' => count($data),
'data' => $data
]);
}
}

View File

@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Actuator extends Model
{
protected $table = 'actuator';
protected $fillable = [
'nama',
'status',
'waktu_aktif'
];
protected $casts = [
'waktu_aktif' => 'datetime'
];
}

View File

@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Sensor extends Model
{
protected $table = 'sensor';
protected $fillable = [
'suhu',
'kelembaban',
'waktu'
];
protected $casts = [
'waktu' => 'datetime',
'suhu' => 'decimal:2',
'kelembaban' => 'decimal:2'
];
}

View File

@ -0,0 +1,36 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Carbon\Carbon;
class UmurTanaman extends Model
{
protected $table = 'umur_tanaman';
protected $fillable = [
'nama',
'tanggal_tanam',
'tanggal_panen',
'umur_hari'
];
protected $casts = [
'tanggal_tanam' => 'date',
'tanggal_panen' => 'date'
];
// Accessor untuk menghitung umur dalam hari
public function getUmurHariAttribute()
{
$tanggalTanam = Carbon::parse($this->attributes['tanggal_tanam']);
if (isset($this->attributes['tanggal_panen']) && $this->attributes['tanggal_panen']) {
$tanggalPanen = Carbon::parse($this->attributes['tanggal_panen']);
return $tanggalTanam->diffInDays($tanggalPanen);
}
return $tanggalTanam->diffInDays(Carbon::now());
}
}

View File

@ -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',
];
}
}

View File

@ -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
{
//
}
}

View File

@ -0,0 +1,37 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Kreait\Firebase\Factory;
use Kreait\Firebase\Database;
class FirebaseServiceProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
$this->app->singleton(Database::class, function ($app) {
$factory = (new Factory)
->withDatabaseUri(config('firebase.database_url'));
// Jika menggunakan service account key file
$serviceAccountPath = storage_path('app/firebase/service-account.json');
if (file_exists($serviceAccountPath)) {
$factory = $factory->withServiceAccount($serviceAccountPath);
}
return $factory->createDatabase();
});
}
/**
* Bootstrap services.
*/
public function boot(): void
{
//
}
}

View File

@ -0,0 +1,417 @@
<?php
namespace App\Services;
use Kreait\Firebase\Database;
use Illuminate\Support\Facades\Log;
class FirebaseService
{
protected $database;
public function __construct(Database $database)
{
$this->database = $database;
}
/**
* Simpan data sensor ke Firebase
*/
public function saveSensorData($temperature, $humidity, $ph, $tds)
{
try {
$timestamp = now()->toISOString();
$data = [
'temperature' => (float) $temperature,
'humidity' => (float) $humidity,
'ph' => (float) $ph,
'tds' => (float) $tds,
'timestamp' => $timestamp,
'created_at' => time()
];
$reference = $this->database->getReference('sensor_data');
$newRef = $reference->push($data);
Log::info('Data sensor berhasil disimpan ke Firebase', ['key' => $newRef->getKey()]);
return $newRef->getKey();
} catch (\Exception $e) {
Log::error('Error saving sensor data to Firebase: ' . $e->getMessage());
return false;
}
}
/**
* Simpan data actuator ke Firebase
*/
public function saveActuatorData($nama, $status)
{
try {
$timestamp = now()->toISOString();
$data = [
'nama' => $nama,
'status' => $status,
'timestamp' => $timestamp,
'created_at' => time()
];
$reference = $this->database->getReference('actuator_data');
$newRef = $reference->push($data);
Log::info('Data actuator berhasil disimpan ke Firebase', ['key' => $newRef->getKey()]);
return $newRef->getKey();
} catch (\Exception $e) {
Log::error('Error saving actuator data to Firebase: ' . $e->getMessage());
return false;
}
}
/**
* Simpan data umur tanaman ke Firebase
*/
public function saveUmurTanamanData($jenisTanaman, $tanggalTanam, $umurHari, $status = 'aktif')
{
try {
$timestamp = now()->toISOString();
$data = [
'jenis_tanaman' => $jenisTanaman,
'tanggal_tanam' => $tanggalTanam,
'umur_hari' => (int) $umurHari,
'status' => $status,
'timestamp' => $timestamp,
'created_at' => time()
];
$reference = $this->database->getReference('umur_tanaman_data');
$newRef = $reference->push($data);
Log::info('Data umur tanaman berhasil disimpan ke Firebase', ['key' => $newRef->getKey()]);
return $newRef->getKey();
} catch (\Exception $e) {
Log::error('Error saving umur tanaman data to Firebase: ' . $e->getMessage());
return false;
}
}
/**
* Ambil data sensor terbaru dari Firebase
*/
public function getLatestSensorData($limit = 10)
{
try {
$reference = $this->database->getReference('sensor_data');
$snapshot = $reference->orderByChild('created_at')
->limitToLast($limit)
->getSnapshot();
$data = [];
foreach ($snapshot->getValue() ?: [] as $key => $value) {
$data[] = array_merge($value, ['firebase_key' => $key]);
}
return array_reverse($data); // Urutkan dari yang terbaru
} catch (\Exception $e) {
Log::error('Error getting sensor data from Firebase: ' . $e->getMessage());
return [];
}
}
/**
* Ambil data actuator terbaru dari Firebase
*/
public function getLatestActuatorData($limit = 10)
{
try {
$reference = $this->database->getReference('actuator_data');
$snapshot = $reference->orderByChild('created_at')
->limitToLast($limit)
->getSnapshot();
$data = [];
foreach ($snapshot->getValue() ?: [] as $key => $value) {
$data[] = array_merge($value, ['firebase_key' => $key]);
}
return array_reverse($data);
} catch (\Exception $e) {
Log::error('Error getting actuator data from Firebase: ' . $e->getMessage());
return [];
}
}
/**
* Ambil data umur tanaman terbaru dari Firebase
*/
public function getLatestUmurTanamanData($limit = 10)
{
try {
$reference = $this->database->getReference('umur_tanaman_data');
$snapshot = $reference->orderByChild('created_at')
->limitToLast($limit)
->getSnapshot();
$data = [];
foreach ($snapshot->getValue() ?: [] as $key => $value) {
$data[] = array_merge($value, ['firebase_key' => $key]);
}
return array_reverse($data);
} catch (\Exception $e) {
Log::error('Error getting umur tanaman data from Firebase: ' . $e->getMessage());
return [];
}
}
/**
* Update status actuator di Firebase
*/
public function updateActuatorStatus($firebaseKey, $status)
{
try {
$reference = $this->database->getReference('actuator_data/' . $firebaseKey);
$reference->update([
'status' => $status,
'updated_at' => time(),
'timestamp' => now()->toISOString()
]);
Log::info('Status actuator berhasil diupdate di Firebase', ['key' => $firebaseKey, 'status' => $status]);
return true;
} catch (\Exception $e) {
Log::error('Error updating actuator status in Firebase: ' . $e->getMessage());
return false;
}
}
/**
* Ambil data real-time untuk monitoring
*/
public function getRealtimeData()
{
try {
$sensorData = $this->getLatestSensorData(5);
$actuatorData = $this->getLatestActuatorData(5);
return [
'sensor' => $sensorData,
'actuator' => $actuatorData,
'last_update' => now()->toISOString()
];
} catch (\Exception $e) {
Log::error('Error getting realtime data from Firebase: ' . $e->getMessage());
return [
'sensor' => [],
'actuator' => [],
'last_update' => now()->toISOString()
];
}
}
/**
* Test koneksi Firebase
*/
public function testConnection()
{
try {
$reference = $this->database->getReference('test');
$reference->set([
'message' => 'Firebase connection test',
'timestamp' => now()->toISOString()
]);
$snapshot = $reference->getSnapshot();
return $snapshot->exists();
} catch (\Exception $e) {
Log::error('Firebase connection test failed: ' . $e->getMessage());
return false;
}
}
/**
* Get all sensor data from Firebase
*/
public function getAllSensorData()
{
try {
$reference = $this->database->getReference('sensor_data');
$snapshot = $reference->getSnapshot();
if ($snapshot->exists()) {
$data = $snapshot->getValue();
$result = [];
foreach ($data as $key => $item) {
$result[] = [
'firebase_key' => $key,
'temperature' => $item['temperature'] ?? 0,
'humidity' => $item['humidity'] ?? 0,
'ph' => $item['ph'] ?? 0,
'tds' => $item['tds'] ?? 0,
'timestamp' => $item['timestamp'] ?? '',
'created_at' => isset($item['created_at']) ? date('Y-m-d H:i:s', $item['created_at']) : ''
];
}
// Sort by timestamp descending
usort($result, function($a, $b) {
return strtotime($b['timestamp']) - strtotime($a['timestamp']);
});
return $result;
}
return [];
} catch (\Exception $e) {
Log::error('Error getting sensor data from Firebase: ' . $e->getMessage());
return [];
}
}
/**
* Get all actuator data from Firebase
*/
public function getAllActuatorData()
{
try {
$reference = $this->database->getReference('actuator_data');
$snapshot = $reference->getSnapshot();
if ($snapshot->exists()) {
$data = $snapshot->getValue();
$result = [];
foreach ($data as $key => $item) {
$result[] = [
'firebase_key' => $key,
'nama' => $item['nama'] ?? '',
'status' => $item['status'] ?? '',
'timestamp' => $item['timestamp'] ?? '',
'created_at' => isset($item['created_at']) ? date('Y-m-d H:i:s', $item['created_at']) : ''
];
}
// Sort by timestamp descending
usort($result, function($a, $b) {
return strtotime($b['timestamp']) - strtotime($a['timestamp']);
});
return $result;
}
return [];
} catch (\Exception $e) {
Log::error('Error getting actuator data from Firebase: ' . $e->getMessage());
return [];
}
}
/**
* Get all umur tanaman data from Firebase
*/
public function getAllUmurTanamanData()
{
try {
$reference = $this->database->getReference('umur_tanaman_data');
$snapshot = $reference->getSnapshot();
if ($snapshot->exists()) {
$data = $snapshot->getValue();
$result = [];
foreach ($data as $key => $item) {
$result[] = [
'firebase_key' => $key,
'jenis_tanaman' => $item['jenis_tanaman'] ?? '',
'tanggal_tanam' => $item['tanggal_tanam'] ?? '',
'umur_hari' => $item['umur_hari'] ?? 0,
'status' => $item['status'] ?? '',
'timestamp' => $item['timestamp'] ?? '',
'created_at' => isset($item['created_at']) ? date('Y-m-d H:i:s', $item['created_at']) : ''
];
}
// Sort by timestamp descending
usort($result, function($a, $b) {
return strtotime($b['timestamp']) - strtotime($a['timestamp']);
});
return $result;
}
return [];
} catch (\Exception $e) {
Log::error('Error getting umur tanaman data from Firebase: ' . $e->getMessage());
return [];
}
}
/**
* Get combined data for reports from Firebase
*/
public function getReportData($date_from = null, $date_to = null)
{
try {
$sensorData = $this->getAllSensorData();
$actuatorData = $this->getAllActuatorData();
$umurTanamanData = $this->getAllUmurTanamanData();
// Filter by date if provided
if ($date_from || $date_to) {
if ($date_from) {
$sensorData = array_filter($sensorData, function($item) use ($date_from) {
return strtotime($item['created_at']) >= strtotime($date_from);
});
$actuatorData = array_filter($actuatorData, function($item) use ($date_from) {
return strtotime($item['created_at']) >= strtotime($date_from);
});
$umurTanamanData = array_filter($umurTanamanData, function($item) use ($date_from) {
return strtotime($item['created_at']) >= strtotime($date_from);
});
}
if ($date_to) {
$sensorData = array_filter($sensorData, function($item) use ($date_to) {
return strtotime($item['created_at']) <= strtotime($date_to . ' 23:59:59');
});
$actuatorData = array_filter($actuatorData, function($item) use ($date_to) {
return strtotime($item['created_at']) <= strtotime($date_to . ' 23:59:59');
});
$umurTanamanData = array_filter($umurTanamanData, function($item) use ($date_to) {
return strtotime($item['created_at']) <= strtotime($date_to . ' 23:59:59');
});
}
}
return [
'sensor' => array_values($sensorData),
'actuator' => array_values($actuatorData),
'umur_tanaman' => array_values($umurTanamanData),
'summary' => [
'total_sensor_records' => count($sensorData),
'total_actuator_records' => count($actuatorData),
'total_umur_tanaman_records' => count($umurTanamanData),
'date_range' => [
'from' => $date_from,
'to' => $date_to
]
]
];
} catch (\Exception $e) {
Log::error('Error getting report data from Firebase: ' . $e->getMessage());
return [
'sensor' => [],
'actuator' => [],
'umur_tanaman' => [],
'summary' => [
'total_sensor_records' => 0,
'total_actuator_records' => 0,
'total_umur_tanaman_records' => 0,
'date_range' => [
'from' => $date_from,
'to' => $date_to
]
]
];
}
}
}

18
hydrop_web/artisan Normal file
View File

@ -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);

View File

@ -0,0 +1,19 @@
<?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',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware): void {
//
})
->withExceptions(function (Exceptions $exceptions): void {
//
})->create();

2
hydrop_web/bootstrap/cache/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,6 @@
<?php
return [
App\Providers\AppServiceProvider::class,
App\Providers\FirebaseServiceProvider::class,
];

76
hydrop_web/composer.json Normal file
View File

@ -0,0 +1,76 @@
{
"$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",
"kreait/firebase-php": "^7.19",
"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
}

9328
hydrop_web/composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

126
hydrop_web/config/app.php Normal file
View File

@ -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(',', (string) env('APP_PREVIOUS_KEYS', ''))
),
],
/*
|--------------------------------------------------------------------------
| Maintenance Mode Driver
|--------------------------------------------------------------------------
|
| These configuration options determine the driver used to determine and
| manage Laravel's "maintenance mode" status. The "cache" driver will
| allow maintenance mode to be controlled across multiple machines.
|
| Supported drivers: "file", "cache"
|
*/
'maintenance' => [
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
'store' => env('APP_MAINTENANCE_STORE', 'database'),
],
];

115
hydrop_web/config/auth.php Normal file
View File

@ -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 number of seconds before a password confirmation
| window expires and users are asked to re-enter their password via the
| confirmation screen. By default, the timeout lasts for three hours.
|
*/
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
];

108
hydrop_web/config/cache.php Normal file
View File

@ -0,0 +1,108 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache store that will be used by the
| framework. This connection is utilized if another isn't explicitly
| specified when running a cache operation inside the application.
|
*/
'default' => env('CACHE_STORE', 'database'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
| Supported drivers: "array", "database", "file", "memcached",
| "redis", "dynamodb", "octane", "null"
|
*/
'stores' => [
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'driver' => 'database',
'connection' => env('DB_CACHE_CONNECTION'),
'table' => env('DB_CACHE_TABLE', 'cache'),
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'lock_path' => storage_path('framework/cache/data'),
],
'memcached' => [
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
],
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
'octane' => [
'driver' => 'octane',
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
| stores, there might be other applications using the same cache. For
| that reason, you may prefix every cache key to avoid collisions.
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
];

View File

@ -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((string) env('APP_NAME', 'laravel')).'-database-'),
'persistent' => env('REDIS_PERSISTENT', false),
],
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
],
'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'),
],
],
];

View File

@ -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'),
],
];

View File

@ -0,0 +1,23 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Firebase Configuration
|--------------------------------------------------------------------------
|
| Configuration for Firebase Realtime Database
|
*/
'database_url' => env('FIREBASE_DATABASE_URL', ''),
'project_id' => env('FIREBASE_PROJECT_ID', ''),
'private_key_id' => env('FIREBASE_PRIVATE_KEY_ID', ''),
'private_key' => env('FIREBASE_PRIVATE_KEY', ''),
'client_email' => env('FIREBASE_CLIENT_EMAIL', ''),
'client_id' => env('FIREBASE_CLIENT_ID', ''),
'auth_uri' => env('FIREBASE_AUTH_URI', 'https://accounts.google.com/o/oauth2/auth'),
'token_uri' => env('FIREBASE_TOKEN_URI', 'https://oauth2.googleapis.com/token'),
'auth_provider_x509_cert_url' => env('FIREBASE_AUTH_PROVIDER_CERT_URL', 'https://www.googleapis.com/oauth2/v1/certs'),
'client_x509_cert_url' => env('FIREBASE_CLIENT_CERT_URL', ''),
];

View File

@ -0,0 +1,132 @@
<?php
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Handler\SyslogUdpHandler;
use Monolog\Processor\PsrLogMessageProcessor;
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that is utilized to write
| messages to your logs. The value provided here should match one of
| the channels present in the list of "channels" configured below.
|
*/
'default' => env('LOG_CHANNEL', 'stack'),
/*
|--------------------------------------------------------------------------
| Deprecations Log Channel
|--------------------------------------------------------------------------
|
| This option controls the log channel that should be used to log warnings
| regarding deprecated PHP and library features. This allows you to get
| your application ready for upcoming major versions of dependencies.
|
*/
'deprecations' => [
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
],
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Laravel
| utilizes the Monolog PHP logging library, which includes a variety
| of powerful log handlers and formatters that you're free to use.
|
| Available drivers: "single", "daily", "slack", "syslog",
| "errorlog", "monolog", "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'days' => env('LOG_DAILY_DAYS', 14),
'replace_placeholders' => true,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
'level' => env('LOG_LEVEL', 'critical'),
'replace_placeholders' => true,
],
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
],
'processors' => [PsrLogMessageProcessor::class],
],
'stderr' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'handler_with' => [
'stream' => 'php://stderr',
],
'formatter' => env('LOG_STDERR_FORMATTER'),
'processors' => [PsrLogMessageProcessor::class],
],
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
'replace_placeholders' => true,
],
'errorlog' => [
'driver' => 'errorlog',
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'null' => [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],
];

118
hydrop_web/config/mail.php Normal file
View File

@ -0,0 +1,118 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send all email
| messages unless another mailer is explicitly specified when sending
| the message. All additional mailers can be configured within the
| "mailers" array. Examples of each type of mailer are provided.
|
*/
'default' => env('MAIL_MAILER', 'log'),
/*
|--------------------------------------------------------------------------
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
| Laravel supports a variety of mail "transport" drivers that can be used
| when delivering an email. You may specify which one you're using for
| your mailers below. You may also add additional mailers if needed.
|
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "resend", "log", "array",
| "failover", "roundrobin"
|
*/
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'scheme' => env('MAIL_SCHEME'),
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
],
'ses' => [
'transport' => 'ses',
],
'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
// 'client' => [
// 'timeout' => 5,
// ],
],
'resend' => [
'transport' => 'resend',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
'retry_after' => 60,
],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
'retry_after' => 60,
],
],
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all emails sent by your application to be sent from
| the same address. Here you may specify a name and address that is
| used globally for all emails that are sent by your application.
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
];

112
hydrop_web/config/queue.php Normal file
View File

@ -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',
],
];

View File

@ -0,0 +1,38 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'resend' => [
'key' => env('RESEND_KEY'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'slack' => [
'notifications' => [
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
],
],
];

View File

@ -0,0 +1,217 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option determines the default session driver that is utilized for
| incoming requests. Laravel supports a variety of storage options to
| persist session data. Database storage is a great default choice.
|
| Supported: "file", "cookie", "database", "memcached",
| "redis", "dynamodb", "array"
|
*/
'driver' => env('SESSION_DRIVER', 'database'),
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to expire immediately when the browser is closed then you may
| indicate that via the expire_on_close configuration option.
|
*/
'lifetime' => (int) env('SESSION_LIFETIME', 120),
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
/*
|--------------------------------------------------------------------------
| Session Encryption
|--------------------------------------------------------------------------
|
| This option allows you to easily specify that all of your session data
| should be encrypted before it's stored. All encryption is performed
| automatically by Laravel and you may use the session like normal.
|
*/
'encrypt' => env('SESSION_ENCRYPT', false),
/*
|--------------------------------------------------------------------------
| Session File Location
|--------------------------------------------------------------------------
|
| When utilizing the "file" session driver, the session files are placed
| on disk. The default storage location is defined here; however, you
| are free to provide another location where they should be stored.
|
*/
'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------
| Session Database Connection
|--------------------------------------------------------------------------
|
| When using the "database" or "redis" session drivers, you may specify a
| connection that should be used to manage these sessions. This should
| correspond to a connection in your database configuration options.
|
*/
'connection' => env('SESSION_CONNECTION'),
/*
|--------------------------------------------------------------------------
| Session Database Table
|--------------------------------------------------------------------------
|
| When using the "database" session driver, you may specify the table to
| be used to store sessions. Of course, a sensible default is defined
| for you; however, you're welcome to change this to another table.
|
*/
'table' => env('SESSION_TABLE', 'sessions'),
/*
|--------------------------------------------------------------------------
| Session Cache Store
|--------------------------------------------------------------------------
|
| When using one of the framework's cache driven session backends, you may
| define the cache store which should be used to store the session data
| between requests. This must match one of your defined cache stores.
|
| Affects: "dynamodb", "memcached", "redis"
|
*/
'store' => env('SESSION_STORE'),
/*
|--------------------------------------------------------------------------
| Session Sweeping Lottery
|--------------------------------------------------------------------------
|
| Some session drivers must manually sweep their storage location to get
| rid of old sessions from storage. Here are the chances that it will
| happen on a given request. By default, the odds are 2 out of 100.
|
*/
'lottery' => [2, 100],
/*
|--------------------------------------------------------------------------
| Session Cookie Name
|--------------------------------------------------------------------------
|
| Here you may change the name of the session cookie that is created by
| the framework. Typically, you should not need to change this value
| since doing so does not grant a meaningful security improvement.
|
*/
'cookie' => env(
'SESSION_COOKIE',
Str::snake((string) env('APP_NAME', 'laravel')).'_session'
),
/*
|--------------------------------------------------------------------------
| Session Cookie Path
|--------------------------------------------------------------------------
|
| The session cookie path determines the path for which the cookie will
| be regarded as available. Typically, this will be the root path of
| your application, but you're free to change this when necessary.
|
*/
'path' => env('SESSION_PATH', '/'),
/*
|--------------------------------------------------------------------------
| Session Cookie Domain
|--------------------------------------------------------------------------
|
| This value determines the domain and subdomains the session cookie is
| available to. By default, the cookie will be available to the root
| domain and all subdomains. Typically, this shouldn't be changed.
|
*/
'domain' => env('SESSION_DOMAIN'),
/*
|--------------------------------------------------------------------------
| HTTPS Only Cookies
|--------------------------------------------------------------------------
|
| By setting this option to true, session cookies will only be sent back
| to the server if the browser has a HTTPS connection. This will keep
| the cookie from being sent to you when it can't be done securely.
|
*/
'secure' => env('SESSION_SECURE_COOKIE'),
/*
|--------------------------------------------------------------------------
| HTTP Access Only
|--------------------------------------------------------------------------
|
| Setting this value to true will prevent JavaScript from accessing the
| value of the cookie and the cookie will only be accessible through
| the HTTP protocol. It's unlikely you should disable this option.
|
*/
'http_only' => env('SESSION_HTTP_ONLY', true),
/*
|--------------------------------------------------------------------------
| Same-Site Cookies
|--------------------------------------------------------------------------
|
| This option determines how your cookies behave when cross-site requests
| take place, and can be used to mitigate CSRF attacks. By default, we
| will set this value to "lax" to permit secure cross-site requests.
|
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
| Supported: "lax", "strict", "none", null
|
*/
'same_site' => env('SESSION_SAME_SITE', 'lax'),
/*
|--------------------------------------------------------------------------
| Partitioned Cookies
|--------------------------------------------------------------------------
|
| Setting this value to true will tie the cookie to the top-level site for
| a cross-site context. Partitioned cookies are accepted by the browser
| when flagged "secure" and the Same-Site attribute is set to "none".
|
*/
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
];

1
hydrop_web/database/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.sqlite*

View File

@ -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,
]);
}
}

View File

@ -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');
}
};

View File

@ -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');
}
};

View File

@ -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');
}
};

View File

@ -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('users', function (Blueprint $table) {
$table->unique('name');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropUnique(['name']);
});
}
};

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('sensor', function (Blueprint $table) {
$table->id();
$table->decimal('suhu', 5, 2);
$table->decimal('kelembaban', 5, 2);
$table->timestamp('waktu')->useCurrent();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('sensor');
}
};

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('actuator', function (Blueprint $table) {
$table->id();
$table->string('nama');
$table->string('status');
$table->timestamp('waktu_aktif')->useCurrent();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('actuator');
}
};

View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('umur_tanaman', function (Blueprint $table) {
$table->id();
$table->string('nama');
$table->date('tanggal_tanam');
$table->date('tanggal_panen')->nullable();
$table->integer('umur_hari')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('umur_tanaman');
}
};

View File

@ -0,0 +1,21 @@
<?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([
UserSeeder::class,
IoTDataSeeder::class,
]);
}
}

View File

@ -0,0 +1,76 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use App\Models\Sensor;
use App\Models\Actuator;
use App\Models\UmurTanaman;
use Carbon\Carbon;
class IoTDataSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
// Data Sensor
$sensorData = [
['suhu' => 25.5, 'kelembaban' => 60.2, 'waktu' => Carbon::now()->subHours(1)],
['suhu' => 26.1, 'kelembaban' => 62.5, 'waktu' => Carbon::now()->subHours(2)],
['suhu' => 24.8, 'kelembaban' => 58.9, 'waktu' => Carbon::now()->subHours(3)],
['suhu' => 27.2, 'kelembaban' => 65.1, 'waktu' => Carbon::now()->subHours(4)],
['suhu' => 26.8, 'kelembaban' => 63.7, 'waktu' => Carbon::now()->subHours(5)],
];
foreach ($sensorData as $data) {
Sensor::create($data);
}
// Data Actuator
$actuatorData = [
['nama' => 'Pompa Air', 'status' => 'Aktif', 'waktu_aktif' => Carbon::now()->subMinutes(30)],
['nama' => 'Kipas Ventilasi', 'status' => 'Nonaktif', 'waktu_aktif' => Carbon::now()->subMinutes(45)],
['nama' => 'Lampu LED', 'status' => 'Aktif', 'waktu_aktif' => Carbon::now()->subMinutes(60)],
['nama' => 'Sensor pH', 'status' => 'Aktif', 'waktu_aktif' => Carbon::now()->subMinutes(15)],
];
foreach ($actuatorData as $data) {
Actuator::create($data);
}
// Data Umur Tanaman
$tanamanData = [
[
'nama' => 'Selada Hijau',
'tanggal_tanam' => Carbon::now()->subDays(30),
'tanggal_panen' => null,
'umur_hari' => 30
],
[
'nama' => 'Bayam',
'tanggal_tanam' => Carbon::now()->subDays(45),
'tanggal_panen' => Carbon::now()->subDays(5),
'umur_hari' => 40
],
[
'nama' => 'Kangkung',
'tanggal_tanam' => Carbon::now()->subDays(20),
'tanggal_panen' => null,
'umur_hari' => 20
],
[
'nama' => 'Pakcoy',
'tanggal_tanam' => Carbon::now()->subDays(35),
'tanggal_panen' => null,
'umur_hari' => 35
],
];
foreach ($tanamanData as $data) {
UmurTanaman::create($data);
}
}
}

View File

@ -0,0 +1,51 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use App\Models\User;
use Illuminate\Support\Facades\Hash;
class UserSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
// Create admin user
User::create([
'name' => 'Admin',
'email' => 'admin@iot.com',
'password' => Hash::make('admin123'),
]);
// Create test user
User::create([
'name' => 'Test User',
'email' => 'test@iot.com',
'password' => Hash::make('test123'),
]);
// Create user sesuai dengan format native (untuk testing)
User::create([
'name' => 'IoT User',
'email' => 'user@example.com',
'password' => Hash::make('password'),
]);
// Create additional demo users
User::create([
'name' => 'John Doe',
'email' => 'john@iot.com',
'password' => Hash::make('john123'),
]);
User::create([
'name' => 'Jane Smith',
'email' => 'jane@iot.com',
'password' => Hash::make('jane123'),
]);
}
}

3048
hydrop_web/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

20
hydrop_web/package.json Normal file
View File

@ -0,0 +1,20 @@
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"axios": "^1.8.2",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^1.2.0",
"tailwindcss": "^4.0.0",
"vite": "^6.2.4"
},
"dependencies": {
"firebase": "^11.10.0"
}
}

34
hydrop_web/phpunit.xml Normal file
View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_STORE" value="array"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="PULSE_ENABLED" value="false"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="NIGHTWATCH_ENABLED" value="false"/>
</php>
</phpunit>

View File

@ -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>

View File

View File

@ -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());

View File

@ -0,0 +1,2 @@
User-agent: *
Disallow:

View File

@ -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';
}

View File

@ -0,0 +1 @@
import './bootstrap';

4
hydrop_web/resources/js/bootstrap.js vendored Normal file
View File

@ -0,0 +1,4 @@
import axios from 'axios';
window.axios = axios;
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';

View File

@ -0,0 +1,115 @@
<!DOCTYPE html>
<html>
<head>
<title>Login - IoT Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #f0f0f0;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
width: 350px;
text-align: center;
}
h2 {
margin-bottom: 20px;
color: #333;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 90%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
}
button {
background-color: #2e7d32;
color: white;
padding: 10px 25px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
margin-top: 10px;
}
button:hover {
background-color: #1b5e20;
}
a {
color: #2e7d32;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.error-message {
color: #d32f2f;
margin: 10px 0;
font-size: 14px;
}
.success-message {
color: #2e7d32;
margin: 10px 0;
font-size: 14px;
}
.form-group {
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="container">
<h2>Login</h2>
@if ($errors->any())
<div class="error-message">
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
</div>
@endif
@if (session('success'))
<div class="success-message">
{{ session('success') }}
</div>
@endif
<form method="POST" action="{{ route('login') }}">
@csrf
<div class="form-group">
<input type="text" name="login" placeholder="Email atau Username" value="{{ old('login') }}" required autocomplete="username">
</div>
<div class="form-group">
<input type="password" name="password" placeholder="Password" required autocomplete="current-password">
</div>
<button type="submit">Login</button>
</form>
<p>Belum punya akun? <a href="{{ route('register') }}">Daftar disini</a></p>
</div>
</body>
</html>

View File

@ -0,0 +1,112 @@
<!DOCTYPE html>
<html>
<head>
<title>Register - IoT Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #f0f0f0;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
width: 350px;
text-align: center;
}
h2 {
margin-bottom: 20px;
color: #333;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 90%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
}
button {
background-color: #2e7d32;
color: white;
padding: 10px 25px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
margin-top: 10px;
}
button:hover {
background-color: #1b5e20;
}
a {
color: #2e7d32;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.error-message {
color: #d32f2f;
margin: 10px 0;
font-size: 14px;
text-align: left;
}
.form-group {
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="container">
<h2>Daftar Akun</h2>
@if ($errors->any())
<div class="error-message">
<ul style="margin: 0; padding-left: 20px;">
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
<form method="POST" action="{{ route('register') }}">
@csrf
<div class="form-group">
<input type="text" name="username" placeholder="Username" value="{{ old('username') }}" required>
</div>
<div class="form-group">
<input type="email" name="email" placeholder="Email" value="{{ old('email') }}" required>
</div>
<div class="form-group">
<input type="password" name="password" placeholder="Password" required>
</div>
<div class="form-group">
<input type="password" name="password_confirmation" placeholder="Konfirmasi Password" required>
</div>
<button type="submit">Daftar</button>
</form>
<p>Sudah punya akun? <a href="{{ route('login') }}">Login disini</a></p>
</div>
</body>
</html>

View File

@ -0,0 +1,167 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Dashboard IoT - Sidebar & Grafik</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
background: #f0f4f8;
}
.sidebar {
width: 250px;
background-color: #2e7d32;
color: white;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 30px;
font-size: 22px;
}
.sidebar a {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
padding: 16px 20px;
margin: 10px 0;
background-color: transparent;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
transition: 0.3s ease;
}
.sidebar a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar a.active {
background-color: rgba(255, 255, 255, 0.2);
}
.sidebar a i {
font-size: 20px;
}
.main-content {
flex: 1;
padding: 40px;
}
.main-content h1 {
margin-bottom: 30px;
color: #2e7d32;
}
.chart-container {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
canvas {
max-width: 100%;
}
.user-info {
background: white;
padding: 20px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
margin-bottom: 30px;
}
.user-info h3 {
color: #2e7d32;
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="sidebar">
<h2><i class="fas fa-seedling"></i> Hidroponik</h2>
<a href="{{ route('dashboard') }}" class="active"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a href="{{ route('sensor') }}"><i class="fas fa-thermometer-half"></i> Sensor</a>
<a href="{{ route('actuator') }}"><i class="fas fa-microchip"></i> Aktuator</a>
<a href="{{ route('umur') }}"><i class="fas fa-leaf"></i> Umur Tanaman</a>
<a href="{{ route('report') }}"><i class="fas fa-download"></i> Report</a>
<a href="{{ route('help') }}"><i class="fas fa-question-circle"></i> Bantuan</a>
<form method="POST" action="{{ route('logout') }}" style="margin: 0;">
@csrf
<a href="#" onclick="this.closest('form').submit(); return false;"><i class="fas fa-sign-out-alt"></i> Logout</a>
</form>
</div>
<div class="main-content">
<h1>Dashboard Monitoring</h1>
<div class="user-info">
<h3>Selamat datang, {{ Auth::user()->name }}!</h3>
<p><strong>Email:</strong> {{ Auth::user()->email }}</p>
<p><strong>Login pada:</strong> {{ now()->format('d/m/Y H:i:s') }}</p>
</div>
<div class="chart-container">
<h3>Grafik Suhu & Kelembaban</h3>
<canvas id="sensorChart" height="100"></canvas>
</div>
</div>
<script>
const ctx = document.getElementById('sensorChart').getContext('2d');
const sensorChart = new Chart(ctx, {
type: 'line',
data: {
labels: ['10:00', '11:00', '12:00', '13:00', '14:00'],
datasets: [
{
label: 'Suhu (°C)',
data: [25, 27, 26, 28, 29],
borderColor: '#f39c12',
backgroundColor: 'rgba(243, 156, 18, 0.1)',
fill: true
},
{
label: 'Kelembaban (%)',
data: [60, 65, 62, 67, 70],
borderColor: '#3498db',
backgroundColor: 'rgba(52, 152, 219, 0.1)',
fill: true
}
]
},
options: {
responsive: true,
scales: {
y: {
beginAtZero: true
}
}
}
});
</script>
</body>
</html>

View File

@ -0,0 +1,207 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Aktuator - IoT Dashboard</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
background: #f0f4f8;
}
.sidebar {
width: 250px;
background-color: #2e7d32;
color: white;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 30px;
font-size: 22px;
}
.sidebar a {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
padding: 16px 20px;
margin: 10px 0;
background-color: transparent;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
transition: 0.3s ease;
}
.sidebar a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar a.active {
background-color: rgba(255, 255, 255, 0.2);
}
.sidebar a i {
font-size: 20px;
}
.main-content {
flex: 1;
padding: 40px;
}
.main-content h1 {
margin-bottom: 30px;
color: #2e7d32;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: white;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border-radius: 15px;
overflow: hidden;
}
th, td {
border: 1px solid #ddd;
padding: 12px 16px;
text-align: center;
}
th {
background-color: #2e7d32;
color: white;
font-weight: 600;
}
tr:nth-child(even) {
background-color: #f1f1f1;
}
tr:hover {
background-color: #e0f2f1;
}
.data-source-badge {
display: inline-block;
padding: 4px 8px;
background-color: #4caf50;
color: white;
border-radius: 12px;
font-size: 12px;
margin-left: 10px;
}
.firebase-badge {
background-color: #ff9800;
}
.sync-info {
background-color: #e3f2fd;
border-left: 4px solid #2196f3;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
.status-badge {
padding: 6px 12px;
border-radius: 15px;
font-weight: 600;
font-size: 12px;
text-transform: uppercase;
}
.status-on {
background-color: #4caf50;
color: white;
}
.status-off {
background-color: #f44336;
color: white;
}
</style>
</head>
<body>
<div class="sidebar">
<h2><i class="fas fa-seedling"></i> Hidroponik</h2>
<a href="{{ route('dashboard') }}"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a href="{{ route('sensor') }}"><i class="fas fa-thermometer-half"></i> Sensor</a>
<a href="{{ route('actuator') }}" class="active"><i class="fas fa-microchip"></i> Aktuator</a>
<a href="{{ route('umur') }}"><i class="fas fa-leaf"></i> Umur Tanaman</a>
<a href="{{ route('report') }}"><i class="fas fa-download"></i> Report</a>
<a href="{{ route('help') }}"><i class="fas fa-question-circle"></i> Bantuan</a>
<form method="POST" action="{{ route('logout') }}" style="margin: 0;">
@csrf
<a href="#" onclick="this.closest('form').submit(); return false;"><i class="fas fa-sign-out-alt"></i> Logout</a>
</form>
</div>
<div class="main-content">
<h1>Data Aktuator <span class="data-source-badge firebase-badge"><i class="fas fa-cloud"></i> Firebase</span></h1>
<div class="sync-info">
<i class="fas fa-database"></i>
<strong>Data Source:</strong> Firebase Realtime Database.
Total Records: <strong>{{ count($actuatorData) }}</strong>
@if(count($actuatorData) > 0)
| Last Update: <strong>{{ $actuatorData[0]['created_at'] }}</strong>
@endif
</div>
<table>
<tr>
<th>Firebase Key</th>
<th>Nama Aktuator</th>
<th>Status</th>
<th>Timestamp</th>
<th>Created At</th>
</tr>
@forelse($actuatorData as $data)
<tr>
<td>{{ $data['firebase_key'] }}</td>
<td>{{ $data['nama'] }}</td>
<td>
<span class="status-badge {{ $data['status'] == 'ON' ? 'status-on' : 'status-off' }}">
{{ $data['status'] }}
</span>
</td>
<td>{{ $data['timestamp'] }}</td>
<td>{{ $data['created_at'] }}</td>
</tr>
@empty
<tr>
<td colspan="5" style="text-align: center; padding: 20px;">
<i class="fas fa-exclamation-circle"></i> Belum ada data aktuator di Firebase<br>
<small>Kirim data dari ESP32/Arduino atau gunakan API endpoint</small>
</td>
</tr>
@endforelse
</table>
</div>
</body>
</html>

View File

@ -0,0 +1,177 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Bantuan - IoT Dashboard</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
background: #f0f4f8;
}
.sidebar {
width: 250px;
background-color: #2e7d32;
color: white;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 30px;
font-size: 22px;
}
.sidebar a {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
padding: 16px 20px;
margin: 10px 0;
background-color: transparent;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
transition: 0.3s ease;
}
.sidebar a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar a.active {
background-color: rgba(255, 255, 255, 0.2);
}
.sidebar a i {
font-size: 20px;
}
.main-content {
flex: 1;
padding: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
width: 400px;
text-align: center;
}
h2 {
margin-bottom: 20px;
color: #2e7d32;
}
input[type="text"],
input[type="email"],
textarea {
width: 90%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-family: 'Poppins', sans-serif;
}
textarea {
resize: none;
height: 100px;
}
button {
background-color: #2e7d32;
color: white;
padding: 10px 25px;
border: none;
border-radius: 6px;
cursor: pointer;
margin-top: 10px;
font-family: 'Poppins', sans-serif;
}
button:hover {
background-color: #1b5e20;
}
.back-link {
color: #2e7d32;
text-decoration: none;
margin-top: 15px;
display: inline-block;
}
.back-link:hover {
text-decoration: underline;
}
.error-message {
color: #d32f2f;
margin: 10px 0;
font-size: 14px;
}
</style>
</head>
<body>
<div class="sidebar">
<h2><i class="fas fa-seedling"></i> Hidroponik</h2>
<a href="{{ route('dashboard') }}"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a href="{{ route('sensor') }}"><i class="fas fa-thermometer-half"></i> Sensor</a>
<a href="{{ route('actuator') }}"><i class="fas fa-microchip"></i> Aktuator</a>
<a href="{{ route('umur') }}"><i class="fas fa-leaf"></i> Umur Tanaman</a>
<a href="{{ route('report') }}"><i class="fas fa-download"></i> Report</a>
<a href="{{ route('help') }}" class="active"><i class="fas fa-question-circle"></i> Bantuan</a>
<form method="POST" action="{{ route('logout') }}" style="margin: 0;">
@csrf
<a href="#" onclick="this.closest('form').submit(); return false;"><i class="fas fa-sign-out-alt"></i> Logout</a>
</form>
</div>
<div class="main-content">
<div class="container">
<h2>Form Bantuan</h2>
@if ($errors->any())
<div class="error-message">
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
</div>
@endif
<form method="POST" action="{{ route('help.send') }}">
@csrf
<input type="text" name="nama" placeholder="Nama Anda" value="{{ old('nama') }}" required><br>
<input type="email" name="email" placeholder="Email Anda" value="{{ old('email') }}" required><br>
<textarea name="pesan" placeholder="Deskripsikan masalah atau pertanyaan Anda" required>{{ old('pesan') }}</textarea><br>
<button type="submit">Kirim via WhatsApp</button>
</form>
<a href="{{ route('dashboard') }}" class="back-link">Kembali ke Dashboard</a>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,372 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Report - IoT Dashboard</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
background: #f0f4f8;
}
.sidebar {
width: 250px;
background-color: #2e7d32;
color: white;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 30px;
font-size: 22px;
}
.sidebar a {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
padding: 16px 20px;
margin: 10px 0;
background-color: transparent;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
transition: background-color 0.3s;
}
.sidebar a:hover {
background-color: rgba(255,255,255,0.1);
}
.sidebar a.active {
background-color: #388e3c;
}
.main-content {
flex: 1;
padding: 40px;
}
.main-content h1 {
color: #2e7d32;
margin-bottom: 20px;
font-size: 28px;
}
.filter-section {
background-color: white;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.filter-form {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}
.filter-form input, .filter-form select, .filter-form button {
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}
.filter-form button {
background-color: #2e7d32;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
.filter-form button:hover {
background-color: #388e3c;
}
.export-buttons {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.export-btn {
padding: 12px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: background-color 0.3s;
}
.excel-btn {
background-color: #4caf50;
color: white;
}
.excel-btn:hover {
background-color: #45a049;
}
.report-table {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 30px;
}
.table-title {
background-color: #2e7d32;
color: white;
padding: 15px 20px;
font-size: 18px;
font-weight: 600;
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 12px 16px;
text-align: center;
}
th {
background-color: #f5f5f5;
font-weight: 600;
color: #333;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
tr:hover {
background-color: #e8f5e8;
}
.no-data {
text-align: center;
padding: 30px;
color: #666;
font-style: italic;
}
.data-source-badge {
display: inline-block;
padding: 4px 8px;
background-color: #ff9800;
color: white;
border-radius: 12px;
font-size: 12px;
margin-left: 10px;
}
.summary-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.summary-card {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
text-align: center;
}
.summary-card h3 {
color: #2e7d32;
margin-bottom: 10px;
}
.summary-card .count {
font-size: 24px;
font-weight: 600;
color: #333;
}
</style>
</head>
<body>
<div class="sidebar">
<h2><i class="fas fa-seedling"></i> Hidroponik</h2>
<a href="{{ route('dashboard') }}"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a href="{{ route('sensor') }}"><i class="fas fa-thermometer-half"></i> Sensor</a>
<a href="{{ route('actuator') }}"><i class="fas fa-microchip"></i> Aktuator</a>
<a href="{{ route('umur') }}"><i class="fas fa-leaf"></i> Umur Tanaman</a>
<a href="{{ route('report') }}" class="active"><i class="fas fa-download"></i> Report</a>
<a href="{{ route('help') }}"><i class="fas fa-question-circle"></i> Bantuan</a>
<form method="POST" action="{{ route('logout') }}" style="margin: 0;">
@csrf
<a href="#" onclick="this.closest('form').submit(); return false;"><i class="fas fa-sign-out-alt"></i> Logout</a>
</form>
</div>
<div class="main-content">
<h1>Report Data Monitoring <span class="data-source-badge"><i class="fas fa-cloud"></i> Firebase</span></h1>
<!-- Filter Section -->
<div class="filter-section">
<h3><i class="fas fa-filter"></i> Filter Data</h3>
<form method="GET" action="{{ route('report') }}" class="filter-form">
<label>Dari Tanggal:</label>
<input type="date" name="date_from" value="{{ $dateFrom ?? '' }}">
<label>Sampai Tanggal:</label>
<input type="date" name="date_to" value="{{ $dateTo ?? '' }}">
<button type="submit"><i class="fas fa-search"></i> Filter</button>
</form>
</div>
<!-- Export Buttons -->
<div class="export-buttons">
<a href="{{ route('report') }}?{{ http_build_query(array_merge(request()->all(), ['export' => 'csv'])) }}" class="export-btn excel-btn">
<i class="fas fa-file-excel"></i> Export Excel
</a>
</div>
<!-- Summary Cards -->
@if(isset($firebaseReportData['summary']))
<div class="summary-cards">
<div class="summary-card">
<h3><i class="fas fa-thermometer-half"></i> Data Sensor</h3>
<div class="count">{{ $firebaseReportData['summary']['total_sensor_records'] }}</div>
</div>
<div class="summary-card">
<h3><i class="fas fa-microchip"></i> Data Aktuator</h3>
<div class="count">{{ $firebaseReportData['summary']['total_actuator_records'] }}</div>
</div>
<div class="summary-card">
<h3><i class="fas fa-leaf"></i> Data Umur Tanaman</h3>
<div class="count">{{ $firebaseReportData['summary']['total_umur_tanaman_records'] }}</div>
</div>
</div>
@endif
<!-- Data Sensor Table -->
<!-- <div class="report-table">
<div class="table-title">
<i class="fas fa-thermometer-half"></i> Data Monitoring Sensor
</div>
<table>
<tr>
<th style="width:50px;">No</th>
<th style="width:100px;">Suhu (°C)</th>
<th style="width:120px;">Kelembaban (%)</th>
<th style="width:180px;">Waktu</th>
</tr>
@forelse($firebaseReportData['sensor'] ?? [] as $index => $data)
<tr>
<td>{{ $index + 1 }}</td>
<td>{{ $data['suhu'] }}</td>
<td>{{ $data['kelembaban'] }}</td>
<td>{{ $data['created_at'] }}</td>
</tr>
@empty
<tr>
<td colspan="4" class="no-data">
<i class="fas fa-exclamation-circle"></i> Tidak ada data sensor
</td>
</tr>
@endforelse
</table>
</div> -->
<!-- Data Aktuator Table -->
<!-- <div class="report-table">
<div class="table-title">
<i class="fas fa-microchip"></i> Data Monitoring Aktuator
</div>
<table>
<tr>
<th style="width:50px;">No</th>
<th style="width:150px;">Nama Aktuator</th>
<th style="width:100px;">Status</th>
<th style="width:180px;">Waktu</th>
</tr>
@forelse($firebaseReportData['actuator'] ?? [] as $index => $data)
<tr>
<td>{{ $index + 1 }}</td>
<td>{{ $data['nama'] }}</td>
<td>{{ $data['status'] }}</td>
<td>{{ $data['created_at'] }}</td>
</tr>
@empty
<tr>
<td colspan="4" class="no-data">
<i class="fas fa-exclamation-circle"></i> Tidak ada data aktuator
</td>
</tr>
@endforelse
</table>
</div> -->
<!-- Data Umur Tanaman Table -->
<!-- <div class="report-table">
<div class="table-title">
<i class="fas fa-leaf"></i> Data Monitoring Umur Tanaman
</div>
<table>
<tr>
<th style="width:50px;">No</th>
<th style="width:150px;">Jenis Tanaman</th>
<th style="width:120px;">Tanggal Tanam</th>
<th style="width:100px;">Umur (Hari)</th>
<th style="width:100px;">Status</th>
<th style="width:180px;">Waktu</th>
</tr>
@forelse($firebaseReportData['umur_tanaman'] ?? [] as $index => $data)
<tr>
<td>{{ $index + 1 }}</td>
<td>{{ $data['jenis_tanaman'] }}</td>
<td>{{ $data['tanggal_tanam'] }}</td>
<td>{{ $data['umur_hari'] }} hari</td>
<td>{{ ucfirst($data['status']) }}</td>
<td>{{ $data['created_at'] }}</td>
</tr>
@empty
<tr>
<td colspan="6" class="no-data">
<i class="fas fa-exclamation-circle"></i> Tidak ada data umur tanaman
</td>
</tr>
@endforelse
</table>
</div> -->
</div>
</body>

View File

@ -0,0 +1,230 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Sensor - IoT Dashboard</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
background: #f0f4f8;
}
.sidebar {
width: 250px;
background-color: #2e7d32;
color: white;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 30px;
font-size: 22px;
}
.sidebar a {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
padding: 16px 20px;
margin: 10px 0;
background-color: transparent;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
transition: 0.3s ease;
}
.sidebar a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar a.active {
background-color: rgba(255, 255, 255, 0.2);
}
.sidebar a i {
font-size: 20px;
}
.main-content {
flex: 1;
padding: 40px;
}
.main-content h1 {
margin-bottom: 30px;
color: #2e7d32;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: white;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border-radius: 15px;
overflow: hidden;
}
th, td {
border: 1px solid #ddd;
padding: 12px 16px;
text-align: center;
}
th {
background-color: #2e7d32;
color: white;
font-weight: 600;
}
tr:nth-child(even) {
background-color: #f1f1f1;
}
tr:hover {
background-color: #e0f2f1;
}
.tabs {
margin-bottom: 20px;
}
.tab-buttons {
display: flex;
margin-bottom: 20px;
}
.tab-button {
padding: 12px 24px;
background-color: #e0e0e0;
border: none;
cursor: pointer;
border-radius: 5px 5px 0 0;
margin-right: 5px;
font-weight: 600;
transition: background-color 0.3s;
}
.tab-button.active {
background-color: #2e7d32;
color: white;
}
.tab-button:hover {
background-color: #c5e1a5;
}
.tab-button.active:hover {
background-color: #388e3c;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.data-source-badge {
display: inline-block;
padding: 4px 8px;
background-color: #4caf50;
color: white;
border-radius: 12px;
font-size: 12px;
margin-left: 10px;
}
.firebase-badge {
background-color: #ff9800;
}
.sync-info {
background-color: #e3f2fd;
border-left: 4px solid #2196f3;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="sidebar">
<h2><i class="fas fa-seedling"></i> Hidroponik</h2>
<a href="{{ route('dashboard') }}"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a href="{{ route('sensor') }}" class="active"><i class="fas fa-thermometer-half"></i> Sensor</a>
<a href="{{ route('actuator') }}"><i class="fas fa-microchip"></i> Aktuator</a>
<a href="{{ route('umur') }}"><i class="fas fa-leaf"></i> Umur Tanaman</a>
<a href="{{ route('report') }}"><i class="fas fa-download"></i> Report</a>
<a href="{{ route('help') }}"><i class="fas fa-question-circle"></i> Bantuan</a>
<form method="POST" action="{{ route('logout') }}" style="margin: 0;">
@csrf
<a href="#" onclick="this.closest('form').submit(); return false;"><i class="fas fa-sign-out-alt"></i> Logout</a>
</form>
</div>
<div class="main-content">
<h1>Data Sensor <span class="data-source-badge firebase-badge"><i class="fas fa-cloud"></i> Firebase</span></h1>
<div class="sync-info">
<i class="fas fa-database"></i>
<strong>Data Source:</strong> Firebase Realtime Database.
Total Records: <strong>{{ count($sensorData) }}</strong>
@if(count($sensorData) > 0)
| Last Update: <strong>{{ $sensorData[0]['created_at'] }}</strong>
@endif
</div>
<table>
<tr>
<th>Firebase Key</th>
<th>Temperature (°C)</th>
<th>Humidity (%)</th>
<th>pH</th>
<th>TDS (ppm)</th>
<th>Timestamp</th>
<th>Created At</th>
</tr>
@forelse($sensorData as $data)
<tr>
<td>{{ $data['firebase_key'] }}</td>
<td>{{ $data['temperature'] }}°C</td>
<td>{{ $data['humidity'] }}%</td>
<td>{{ $data['ph'] }}</td>
<td>{{ $data['tds'] }}</td>
<td>{{ $data['timestamp'] }}</td>
<td>{{ $data['created_at'] }}</td>
</tr>
@empty
<tr>
<td colspan="7" style="text-align: center; padding: 20px;">
<i class="fas fa-exclamation-circle"></i> Belum ada data sensor di Firebase<br>
<small>Kirim data dari ESP32/Arduino atau gunakan API endpoint</small>
</td>
</tr>
@endforelse
</table>
</div>
</body>
</html>

View File

@ -0,0 +1,214 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Umur Tanaman - IoT Dashboard</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
background: #f0f4f8;
}
.sidebar {
width: 250px;
background-color: #2e7d32;
color: white;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 30px;
font-size: 22px;
}
.sidebar a {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
padding: 16px 20px;
margin: 10px 0;
background-color: transparent;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
transition: 0.3s ease;
}
.sidebar a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar a.active {
background-color: rgba(255, 255, 255, 0.2);
}
.sidebar a i {
font-size: 20px;
}
.main-content {
flex: 1;
padding: 40px;
}
.main-content h1 {
margin-bottom: 30px;
color: #2e7d32;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: white;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border-radius: 15px;
overflow: hidden;
}
th, td {
border: 1px solid #ddd;
padding: 12px 16px;
text-align: center;
}
th {
background-color: #2e7d32;
color: white;
font-weight: 600;
}
tr:nth-child(even) {
background-color: #f1f1f1;
}
tr:hover {
background-color: #e0f2f1;
}
.data-source-badge {
display: inline-block;
padding: 4px 8px;
background-color: #4caf50;
color: white;
border-radius: 12px;
font-size: 12px;
margin-left: 10px;
}
.firebase-badge {
background-color: #ff9800;
}
.sync-info {
background-color: #e3f2fd;
border-left: 4px solid #2196f3;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
.status-badge {
padding: 6px 12px;
border-radius: 15px;
font-weight: 600;
font-size: 12px;
text-transform: capitalize;
}
.status-healthy {
background-color: #4caf50;
color: white;
}
.status-growing {
background-color: #2196f3;
color: white;
}
.status-normal {
background-color: #ff9800;
color: white;
}
</style>
</head>
<body>
<div class="sidebar">
<h2><i class="fas fa-seedling"></i> Hidroponik</h2>
<a href="{{ route('dashboard') }}"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a href="{{ route('sensor') }}"><i class="fas fa-thermometer-half"></i> Sensor</a>
<a href="{{ route('actuator') }}"><i class="fas fa-microchip"></i> Aktuator</a>
<a href="{{ route('umur') }}" class="active"><i class="fas fa-leaf"></i> Umur Tanaman</a>
<a href="{{ route('report') }}"><i class="fas fa-download"></i> Report</a>
<a href="{{ route('help') }}"><i class="fas fa-question-circle"></i> Bantuan</a>
<form method="POST" action="{{ route('logout') }}" style="margin: 0;">
@csrf
<a href="#" onclick="this.closest('form').submit(); return false;"><i class="fas fa-sign-out-alt"></i> Logout</a>
</form>
</div>
<div class="main-content">
<h1>Data Umur Tanaman <span class="data-source-badge firebase-badge"><i class="fas fa-cloud"></i> Firebase</span></h1>
<div class="sync-info">
<i class="fas fa-database"></i>
<strong>Data Source:</strong> Firebase Realtime Database.
Total Records: <strong>{{ count($umurTanamanData) }}</strong>
@if(count($umurTanamanData) > 0)
| Last Update: <strong>{{ $umurTanamanData[0]['created_at'] }}</strong>
@endif
</div>
<table>
<tr>
<th>Firebase Key</th>
<th>Jenis Tanaman</th>
<th>Tanggal Tanam</th>
<th>Umur (Hari)</th>
<th>Status</th>
<th>Created At</th>
</tr>
@forelse($umurTanamanData as $data)
<tr>
<td>{{ $data['firebase_key'] }}</td>
<td>{{ $data['jenis_tanaman'] }}</td>
<td>{{ $data['tanggal_tanam'] }}</td>
<td>{{ $data['umur_hari'] }} hari</td>
<td>
<span class="status-badge {{ $data['status'] == 'sehat' ? 'status-healthy' : ($data['status'] == 'berkembang' ? 'status-growing' : 'status-normal') }}">
{{ ucfirst($data['status']) }}
</span>
</td>
<td>{{ $data['created_at'] }}</td>
</tr>
@empty
<tr>
<td colspan="6" style="text-align: center; padding: 20px;">
<i class="fas fa-exclamation-circle"></i> Belum ada data umur tanaman di Firebase<br>
<small>Kirim data dari ESP32/Arduino atau gunakan API endpoint</small>
</td>
</tr>
@endforelse
</table>
</div>
</body>
</html>

44
hydrop_web/routes/api.php Normal file
View File

@ -0,0 +1,44 @@
<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\FirebaseController;
Route::get('/user', function (Request $request) {
return $request->user();
})->middleware('auth:sanctum');
// Test endpoint
Route::get('/test', function () {
return response()->json(['message' => 'API working']);
});
// Firebase API Routes
Route::prefix('firebase')->group(function () {
Route::post('/test-connection', [FirebaseController::class, 'testConnection']);
Route::post('/sensor-data', [FirebaseController::class, 'receiveSensorData']);
Route::post('/actuator-data', [FirebaseController::class, 'receiveActuatorData']);
Route::get('/realtime-data', [FirebaseController::class, 'getRealtimeData']);
Route::post('/update-actuator', [FirebaseController::class, 'updateActuatorStatus']);
Route::post('/sync-from-firebase', [FirebaseController::class, 'syncFromFirebase']);
});
// IoT Device Routes (untuk ESP32/Arduino)
Route::prefix('iot')->group(function () {
Route::post('/sensor', [FirebaseController::class, 'receiveSensorData']);
Route::post('/actuator', [FirebaseController::class, 'receiveActuatorData']);
Route::post('/umur-tanaman', [FirebaseController::class, 'receiveUmurTanamanData']);
Route::get('/status', function () {
return response()->json([
'status' => 'online',
'timestamp' => now()->toISOString()
]);
});
});
// Test endpoints untuk Firebase data
Route::prefix('test')->group(function () {
Route::get('/firebase-sensor', [FirebaseController::class, 'getFirebaseSensorData']);
Route::get('/firebase-actuator', [FirebaseController::class, 'getFirebaseActuatorData']);
Route::get('/firebase-umur', [FirebaseController::class, 'getFirebaseUmurTanamanData']);
});

View File

@ -0,0 +1,8 @@
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');

29
hydrop_web/routes/web.php Normal file
View File

@ -0,0 +1,29 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\AuthController;
// Root route redirect to login
Route::get('/', function () {
return redirect()->route('login');
});
// Authentication Routes
Route::get('/login', [AuthController::class, 'showLogin'])->name('login');
Route::post('/login', [AuthController::class, 'login']);
Route::get('/register', [AuthController::class, 'showRegister'])->name('register');
Route::post('/register', [AuthController::class, 'register']);
Route::post('/logout', [AuthController::class, 'logout'])->name('logout');
// Protected Routes
Route::middleware('auth')->group(function () {
Route::get('/dashboard', [AuthController::class, 'dashboard'])->name('dashboard');
Route::get('/sensor', [AuthController::class, 'sensor'])->name('sensor');
Route::get('/actuator', [AuthController::class, 'actuator'])->name('actuator');
Route::get('/umur', [AuthController::class, 'umur'])->name('umur');
Route::get('/report', [AuthController::class, 'report'])->name('report');
Route::get('/help', [AuthController::class, 'help'])->name('help');
Route::post('/help', [AuthController::class, 'sendHelp'])->name('help.send');
});

4
hydrop_web/storage/app/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*
!private/
!public/
!.gitignore

View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,9 @@
compiled.php
config.php
down
events.scanned.php
maintenance.php
routes.php
routes.scanned.php
schedule-*
services.json

View File

@ -0,0 +1,3 @@
*
!data/
!.gitignore

View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,2 @@
*
!.gitignore

2
hydrop_web/storage/logs/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,19 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}

View File

@ -0,0 +1,10 @@
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
//
}

View File

@ -0,0 +1,16 @@
<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}

13
hydrop_web/vite.config.js Normal file
View File

@ -0,0 +1,13 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
tailwindcss(),
],
});