23 lines
560 B
PHP
23 lines
560 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class OrangTuaController extends ApiBaseController
|
|
{
|
|
public function index()
|
|
{
|
|
$user = Auth::user();
|
|
|
|
$orangtua = User::where('id_role', 3)
|
|
->where('id_desa', $user->id_desa)
|
|
->where('id_posyandu', $user->id_posyandu)
|
|
->where('status', 1) // Filter only approved parents
|
|
->get();
|
|
|
|
return $this->successResponse("data orang tua", $orangtua);
|
|
}
|
|
} |