updated
This commit is contained in:
103
Modules/Internal/Http/Controllers/Api/DoctorRatingController.php
Normal file
103
Modules/Internal/Http/Controllers/Api/DoctorRatingController.php
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Internal\Http\Controllers\Api;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Illuminate\Routing\Controller;
|
||||||
|
use App\Models\OLDLMS\DoctorRating;
|
||||||
|
|
||||||
|
class DoctorRatingController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
* @param int|null $id
|
||||||
|
* @return \Illuminate\Http\JsonResponse
|
||||||
|
*/
|
||||||
|
public function index($id = null)
|
||||||
|
{
|
||||||
|
$query = DoctorRating::query();
|
||||||
|
if ($id !== null) {
|
||||||
|
$query->where('nID', $id);
|
||||||
|
}
|
||||||
|
|
||||||
|
$doctorRatings = $query->with([
|
||||||
|
'user' => function ($query) {
|
||||||
|
$query->select('nID', 'sFirstName'); // Select only necessary columns
|
||||||
|
}
|
||||||
|
])
|
||||||
|
->select('nIDUser', 'nIDDokter', 'nRating', 'sNotes', 'dCreateOn')
|
||||||
|
->get();
|
||||||
|
|
||||||
|
|
||||||
|
// $prescriptions->toArray();
|
||||||
|
// dd($prescriptions);
|
||||||
|
|
||||||
|
return response()->json($doctorRatings);
|
||||||
|
// return response()->json(Helper::paginateResources(LivechatResource::collection($livechat)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
* @return Renderable
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
return view('internal::create');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
* @param Request $request
|
||||||
|
* @return Renderable
|
||||||
|
*/
|
||||||
|
public function store(Request $request)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
* @param int $id
|
||||||
|
* @return Renderable
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
* @param int $id
|
||||||
|
* @return Renderable
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
return view('internal::edit');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
* @param Request $request
|
||||||
|
* @param int $id
|
||||||
|
* @return Renderable
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
* @param int $id
|
||||||
|
* @return Renderable
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -19,6 +19,7 @@ use Modules\Internal\Http\Controllers\Api\DiagnosisExclusionController;
|
|||||||
use Modules\Internal\Http\Controllers\Api\DistrictController;
|
use Modules\Internal\Http\Controllers\Api\DistrictController;
|
||||||
use Modules\Internal\Http\Controllers\Api\DivisionController;
|
use Modules\Internal\Http\Controllers\Api\DivisionController;
|
||||||
use Modules\Internal\Http\Controllers\Api\DoctorController;
|
use Modules\Internal\Http\Controllers\Api\DoctorController;
|
||||||
|
use Modules\Internal\Http\Controllers\Api\DoctorRatingController;
|
||||||
use Modules\Internal\Http\Controllers\Api\DrugController;
|
use Modules\Internal\Http\Controllers\Api\DrugController;
|
||||||
use Modules\Internal\Http\Controllers\Api\FormulariumController;
|
use Modules\Internal\Http\Controllers\Api\FormulariumController;
|
||||||
use Modules\Internal\Http\Controllers\Api\Linksehat\PaymentController;
|
use Modules\Internal\Http\Controllers\Api\Linksehat\PaymentController;
|
||||||
@@ -154,6 +155,8 @@ Route::prefix('internal')->group(function () {
|
|||||||
Route::resource('live-chat', LivechatController::class);
|
Route::resource('live-chat', LivechatController::class);
|
||||||
Route::get('prescription', [PrescriptionController::class, 'index']);
|
Route::get('prescription', [PrescriptionController::class, 'index']);
|
||||||
Route::get('prescription/{id}', [PrescriptionController::class, 'index']);
|
Route::get('prescription/{id}', [PrescriptionController::class, 'index']);
|
||||||
|
Route::get('doctorrating', [DoctorRatingController::class, 'index']);
|
||||||
|
Route::get('doctorrating/{id}', [PrescriptionController::class, 'index']);
|
||||||
|
|
||||||
Route::resource('doctors', DoctorController::class);
|
Route::resource('doctors', DoctorController::class);
|
||||||
|
|
||||||
|
|||||||
35
app/Models/OLDLMS/DoctorRating.php
Normal file
35
app/Models/OLDLMS/DoctorRating.php
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models\OLDLMS;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class DoctorRating extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
const CREATED_AT = 'dCreateOn';
|
||||||
|
const UPDATED_AT = 'dUpdateOn';
|
||||||
|
const DELETED_AT = 'dDeleteOn';
|
||||||
|
|
||||||
|
protected $connection = 'oldlms';
|
||||||
|
protected $table = 'tx_dokter_rating';
|
||||||
|
|
||||||
|
// Define a belongsTo relationship with the User model
|
||||||
|
public function user()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(User::class, 'nIDUser');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Include additional fields in the model's JSON form
|
||||||
|
protected $appends = [
|
||||||
|
'user_first_name', // Include the attribute for user's first name
|
||||||
|
];
|
||||||
|
|
||||||
|
// Define an accessor to get the first name of the related user
|
||||||
|
public function getUserFirstNameAttribute()
|
||||||
|
{
|
||||||
|
return $this->user ? $this->user->sFirstName : null;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
bootstrap/cache/.gitignore
vendored
Executable file → Normal file
0
bootstrap/cache/.gitignore
vendored
Executable file → Normal file
3010
frontend/client-portal/package-lock.json
generated
3010
frontend/client-portal/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -64,6 +64,7 @@
|
|||||||
"notistack": "^3.0.1",
|
"notistack": "^3.0.1",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"numeral": "^2.0.6",
|
"numeral": "^2.0.6",
|
||||||
|
"pnpm": "^8.6.9",
|
||||||
"pusher-js": "^8.0.2",
|
"pusher-js": "^8.0.2",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-apexcharts": "^1.4.0",
|
"react-apexcharts": "^1.4.0",
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ import {
|
|||||||
const steps = ['Review', 'Approval', 'Disbursement'];
|
const steps = ['Review', 'Approval', 'Disbursement'];
|
||||||
|
|
||||||
const DialogDetailClaim = ({ title, openDialog, setOpenDialog, data }: MuiDialogProps) => {
|
const DialogDetailClaim = ({ title, openDialog, setOpenDialog, data }: MuiDialogProps) => {
|
||||||
|
function clickHandler(arg0: string) {
|
||||||
|
throw new Error('Function not implemented.');
|
||||||
|
}
|
||||||
|
|
||||||
// const getContent = () => (
|
// const getContent = () => (
|
||||||
|
|
||||||
// );
|
// );
|
||||||
@@ -108,6 +112,7 @@ import {
|
|||||||
fullWidth
|
fullWidth
|
||||||
sx={{ typography: 'subtitle2', borderColor: '#F5F5F5' }}
|
sx={{ typography: 'subtitle2', borderColor: '#F5F5F5' }}
|
||||||
>
|
>
|
||||||
|
onClick={() => clickHandler('topUpLimit')}
|
||||||
Hasil Pemeriksaan Laboratorium
|
Hasil Pemeriksaan Laboratorium
|
||||||
</Button>
|
</Button>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
1563
frontend/dashboard/package-lock.json
generated
1563
frontend/dashboard/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -66,6 +66,7 @@
|
|||||||
"notistack": "3.0.0-alpha.11",
|
"notistack": "3.0.0-alpha.11",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"numeral": "^2.0.6",
|
"numeral": "^2.0.6",
|
||||||
|
"pnpm": "^8.6.12",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-apexcharts": "^1.4.0",
|
"react-apexcharts": "^1.4.0",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
|
|||||||
@@ -86,6 +86,8 @@ const navConfig = [
|
|||||||
{ title: 'Live Chat', path: '/report/live-chat' },
|
{ title: 'Live Chat', path: '/report/live-chat' },
|
||||||
{ title: 'Linksehat Payment', path: '/report/linksehat-payments' },
|
{ title: 'Linksehat Payment', path: '/report/linksehat-payments' },
|
||||||
{ title: 'Prescription', path: '/report/prescription' },
|
{ title: 'Prescription', path: '/report/prescription' },
|
||||||
|
{ title: 'Doctor Rating', path: '/report/doctorrating' },
|
||||||
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
37
frontend/dashboard/src/pages/Report/DoctorRating/Index.tsx
Normal file
37
frontend/dashboard/src/pages/Report/DoctorRating/Index.tsx
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
import { Card, Grid, Container } from '@mui/material';
|
||||||
|
import { useParams } from 'react-router-dom';
|
||||||
|
import HeaderBreadcrumbs from '@/components/HeaderBreadcrumbs';
|
||||||
|
import Page from '@/components/Page';
|
||||||
|
import useSettings from '@/hooks/useSettings';
|
||||||
|
import List from '../Prescription/List';
|
||||||
|
|
||||||
|
export default function DoctorRating(){
|
||||||
|
const { themeStretch } = useSettings();
|
||||||
|
|
||||||
|
const { id } = useParams();
|
||||||
|
|
||||||
|
const pageTitle = 'Doctor Rating';
|
||||||
|
|
||||||
|
return(
|
||||||
|
<Page title = {pageTitle}>
|
||||||
|
<Container maxWidth = {themeStretch ? false : 'xl'}>
|
||||||
|
<HeaderBreadcrumbs heading= {pageTitle}
|
||||||
|
links={[
|
||||||
|
{
|
||||||
|
name: 'Report',
|
||||||
|
href: '/report',
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Doctor Rating',
|
||||||
|
href: '/doctorrating',
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<List/>
|
||||||
|
|
||||||
|
</Container>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
}
|
||||||
427
frontend/dashboard/src/pages/Report/DoctorRating/List_2.tsx
Normal file
427
frontend/dashboard/src/pages/Report/DoctorRating/List_2.tsx
Normal file
@@ -0,0 +1,427 @@
|
|||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Button,
|
||||||
|
Card,
|
||||||
|
Collapse,
|
||||||
|
Paper,
|
||||||
|
Select,
|
||||||
|
SelectChangeEvent,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableContainer,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
TextField,
|
||||||
|
Typography,
|
||||||
|
Stack,
|
||||||
|
ButtonGroup,
|
||||||
|
Grid,
|
||||||
|
Chip,
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogContentText,
|
||||||
|
DialogActions,
|
||||||
|
FormControl,
|
||||||
|
Autocomplete,
|
||||||
|
InputAdornment,
|
||||||
|
IconButton,
|
||||||
|
} from '@mui/material';
|
||||||
|
|
||||||
|
import {
|
||||||
|
Link,
|
||||||
|
NavLink as RouterLink,
|
||||||
|
useSearchParams,
|
||||||
|
useNavigate,
|
||||||
|
useParams,
|
||||||
|
} from 'react-router-dom';
|
||||||
|
// hooks
|
||||||
|
import React, { ChangeEvent, Component, useEffect, useRef, useState } from 'react';
|
||||||
|
import useSettings from '../../../hooks/useSettings';
|
||||||
|
// components
|
||||||
|
import axios from '../../../utils/axios';
|
||||||
|
import { LaravelPaginatedData } from '../../../@types/paginated-data';
|
||||||
|
import { Icd } from '../../../@types/diagnosis';
|
||||||
|
import BasePagination from '../../../components/BasePagination';
|
||||||
|
import { Practitioner } from '../../../@types/doctor';
|
||||||
|
import CreateIcon from '@mui/icons-material/Create';
|
||||||
|
import { Props } from '../../../components/editor/index';
|
||||||
|
import { red } from '@mui/material/colors';
|
||||||
|
import { margin, padding } from '@mui/system';
|
||||||
|
import { enqueueSnackbar } from 'notistack';
|
||||||
|
import { Controller } from 'react-hook-form';
|
||||||
|
|
||||||
|
|
||||||
|
import SvgIconStyle from '../../../components/SvgIconStyle';
|
||||||
|
import { GridSearchIcon } from '@mui/x-data-grid';
|
||||||
|
import { Search } from '@mui/icons-material';
|
||||||
|
import { Icon } from '@iconify/react';
|
||||||
|
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
|
||||||
|
import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight';
|
||||||
|
|
||||||
|
export default function List(){
|
||||||
|
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const { organization_id } = useParams();
|
||||||
|
const [searchParams, setSearchParams] = useSearchParams();
|
||||||
|
const [searchParamsOrganizations, setSearchParamsOrganizations] = useSearchParams();
|
||||||
|
const [searchParamsSpecialities, setSearchParamsSpecialities] = useSearchParams();
|
||||||
|
const [searchParamsFilter, setSearchParamsFilter] = useSearchParams();
|
||||||
|
|
||||||
|
function Filter(props: any) {
|
||||||
|
// SEARCH
|
||||||
|
const searchInput = useRef<HTMLInputElement>(null);
|
||||||
|
const [searchText, setSearchText] = useState('');
|
||||||
|
|
||||||
|
//handle search
|
||||||
|
const handleSearchChange = (event: any) => {
|
||||||
|
const newSearchText = event.target.value ?? '';
|
||||||
|
setSearchText(newSearchText);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSearchSubmit = (event: any) => {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
props.onSearch(searchText);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
// Trigger First Search
|
||||||
|
setSearchText(searchParams.get('search') ?? '');
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const item = [
|
||||||
|
{
|
||||||
|
id: '',
|
||||||
|
value: '',
|
||||||
|
name: 'Semua',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<form style={{ width: '100%' }}>
|
||||||
|
<Grid container spacing={2} sx={{ justifyContent: 'space-between', alignItems: 'center' }}>
|
||||||
|
<Grid item xs={12} sm={12} md={12} lg={12}>
|
||||||
|
<TextField
|
||||||
|
id="search-input"
|
||||||
|
ref={searchInput}
|
||||||
|
variant="outlined"
|
||||||
|
fullWidth
|
||||||
|
onChange={handleSearchChange}
|
||||||
|
onKeyDown={(event) => {
|
||||||
|
if (event.key === 'Enter') {
|
||||||
|
handleSearchSubmit(event);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
value={searchText}
|
||||||
|
InputProps={{
|
||||||
|
startAdornment: (
|
||||||
|
<InputAdornment position="start">
|
||||||
|
<Search />
|
||||||
|
</InputAdornment>
|
||||||
|
),
|
||||||
|
placeholder: 'Search',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</form>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
function FilterForm(props: any) {
|
||||||
|
return(
|
||||||
|
<Grid
|
||||||
|
container
|
||||||
|
spacing={2}
|
||||||
|
sx={{ p: 2, justifyContent: 'space-between', alignItems: 'center' }}
|
||||||
|
>
|
||||||
|
<Grid item xs={12} md={12} lg={12}>
|
||||||
|
<Filter onSearch={applyItems} />
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function createData(doctor: Practitioner): Practitioner {
|
||||||
|
return {
|
||||||
|
...doctor,
|
||||||
|
/* user: doctor.user ? new User(doctor.user) : null; */
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function Row(props: { row: ReturnType<typeof createData> }) {
|
||||||
|
const { row } = props;
|
||||||
|
const [open, setOpen] = React.useState(false);
|
||||||
|
const [openDialog, setOpenDialog] = React.useState(false);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<React.Fragment>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>
|
||||||
|
<IconButton aria-label="expand row" size="small" onClick={() => setOpen(!open)}>
|
||||||
|
{open ? <KeyboardArrowDownIcon /> : <KeyboardArrowRightIcon />}
|
||||||
|
</IconButton>
|
||||||
|
</TableCell>
|
||||||
|
|
||||||
|
<TableCell align="left">{row.user ? row.user.sFirstName : '-'}</TableCell>
|
||||||
|
<TableCell align="left">{row.nIDDokter ? row.nIDDokter : '-'}</TableCell>
|
||||||
|
<TableCell align="left">{row.nRating ? row.nRating : '-'}</TableCell>
|
||||||
|
<TableCell align="left">{row.sNotes ? row.sNotes : '-'}</TableCell>
|
||||||
|
<TableCell align="left">{row.dCreateOn ? row.dCreateOn : '-'}</TableCell>
|
||||||
|
|
||||||
|
{/* <TableCell align="center">
|
||||||
|
<ButtonGroup variant="text" aria-label="text button group">
|
||||||
|
<Link to={'/report/prescription/' + row.id + '/show'}>
|
||||||
|
<Button>
|
||||||
|
<Icon icon="ph:eye-bold" style={{ width: '24px', height: '24px' }} />
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
</ButtonGroup>
|
||||||
|
</TableCell> */}
|
||||||
|
</TableRow>
|
||||||
|
{/* COLLAPSIBLE ROW */}
|
||||||
|
<TableRow>
|
||||||
|
<TableCell
|
||||||
|
style={{ paddingBottom: 0, paddingTop: 0, backgroundColor: 'rgba(244, 246, 248, 0.5)' }}
|
||||||
|
colSpan={6}
|
||||||
|
>
|
||||||
|
{/* <Collapse in={open} timeout="auto" unmountOnExit>
|
||||||
|
<Box sx={{ margin: 1, pb: 2, pl: 4 }}>
|
||||||
|
<Grid container>
|
||||||
|
<Grid item xs={12} sx={{ padding: 2 }}>
|
||||||
|
<Grid container>
|
||||||
|
<Grid item xs={6}>
|
||||||
|
Metode Pembayaran
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={6}>
|
||||||
|
: {row.payment_method ? row.payment_method : '-'}
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid item xs={6}>
|
||||||
|
Jenis Benefit
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={6}>
|
||||||
|
: -
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={6}>
|
||||||
|
Durasi
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={6}>
|
||||||
|
: {row.duration ? row.duration : '-'}
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Box>
|
||||||
|
</Collapse> */}
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
|
{/* END COLLAPSIBLE ROW */}
|
||||||
|
<Dialog
|
||||||
|
open={openDialog}
|
||||||
|
onClose={() => {
|
||||||
|
setOpenDialog(false);
|
||||||
|
}}
|
||||||
|
aria-labelledby="alert-dialog-title"
|
||||||
|
aria-describedby="alert-dialog-description"
|
||||||
|
>
|
||||||
|
<DialogContent sx={{ p: 5 }}>
|
||||||
|
<Icon
|
||||||
|
icon="eva:trash-2-outline"
|
||||||
|
style={{
|
||||||
|
width: '100px',
|
||||||
|
height: '100px',
|
||||||
|
color: '#FF0000',
|
||||||
|
margin: 'auto',
|
||||||
|
display: 'block',
|
||||||
|
marginBottom: '20px',
|
||||||
|
alignContent: 'center',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<DialogContentText sx={{ fontWeight: 'bold', pb: 1 }} id="alert-dialog-title">
|
||||||
|
Apakah anda yakin ingin menghapus
|
||||||
|
</DialogContentText>
|
||||||
|
<Typography sx={{ fontWeight: 'bold' }} id="alert-dialog-title">
|
||||||
|
{row.name}?
|
||||||
|
</Typography>
|
||||||
|
</DialogContent>
|
||||||
|
<DialogActions>
|
||||||
|
<Button
|
||||||
|
onClick={() => {
|
||||||
|
setOpenDialog(false);
|
||||||
|
}}
|
||||||
|
color="primary"
|
||||||
|
>
|
||||||
|
Batal
|
||||||
|
</Button>
|
||||||
|
{/* <Button
|
||||||
|
onClick={() => {
|
||||||
|
handleDelete(row.id);
|
||||||
|
}}
|
||||||
|
color="primary"
|
||||||
|
autoFocus
|
||||||
|
>
|
||||||
|
Hapus
|
||||||
|
</Button> */}
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
</React.Fragment>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const headStyle = {
|
||||||
|
fontWeight: 'bold',
|
||||||
|
};
|
||||||
|
// Dummy Default Data
|
||||||
|
const [dataTableIsLoading, setDataTableLoading] = useState(true);
|
||||||
|
const [dataTableLastRequest, setDataTableLastRequest] = useState(0);
|
||||||
|
const [dataTableResponseState, setDataTableResponseState] = useState('idle');
|
||||||
|
const [dataTableData, setDataTableData] = useState<LaravelPaginatedData>({
|
||||||
|
current_page: 1,
|
||||||
|
data: [],
|
||||||
|
path: '',
|
||||||
|
first_page_url: '',
|
||||||
|
last_page: 1,
|
||||||
|
last_page_url: '',
|
||||||
|
next_page_url: '',
|
||||||
|
prev_page_url: '',
|
||||||
|
per_page: 10,
|
||||||
|
from: 0,
|
||||||
|
to: 0,
|
||||||
|
total: 0,
|
||||||
|
});
|
||||||
|
const [dataTablePage, setDataTablePage] = useState(5);
|
||||||
|
|
||||||
|
const loadDataTableData = async (appliedFilter: any | null = null) => {
|
||||||
|
setDataTableLoading(true);
|
||||||
|
const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]);
|
||||||
|
const response = await axios.get('/doctorrating ', {
|
||||||
|
params: filter,
|
||||||
|
});
|
||||||
|
setDataTableLoading(false);
|
||||||
|
setDataTableData(response.data);
|
||||||
|
};
|
||||||
|
|
||||||
|
// const applyFilter = async (searchFilter: string) => {
|
||||||
|
// await loadDataTableData({ search: searchFilter });
|
||||||
|
// setSearchParams({ search: searchFilter });
|
||||||
|
// };
|
||||||
|
|
||||||
|
const applyItems = async (
|
||||||
|
searchFilter: string,
|
||||||
|
searchFilterOrganization: string,
|
||||||
|
searchFilterSpecialities: string
|
||||||
|
) => {
|
||||||
|
await loadDataTableData({
|
||||||
|
search: searchFilter,
|
||||||
|
organization_id: searchFilterOrganization,
|
||||||
|
speciality_id: searchFilterSpecialities,
|
||||||
|
});
|
||||||
|
setSearchParamsFilter({
|
||||||
|
search: searchFilter,
|
||||||
|
organization_id: searchFilterOrganization,
|
||||||
|
speciality_id: searchFilterSpecialities,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const handlePageChange = (event: ChangeEvent, value: number) => {
|
||||||
|
const filter = Object.fromEntries([...searchParams.entries(), ['page', value]]);
|
||||||
|
loadDataTableData(filter);
|
||||||
|
setSearchParams(filter);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
loadDataTableData();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Stack>
|
||||||
|
{/* <Ambulace /> */}
|
||||||
|
|
||||||
|
<Card sx={{ marginTop: '30px' }}>
|
||||||
|
<FilterForm sx={{ marginTop: '100px' }} />
|
||||||
|
|
||||||
|
{/* The Main Table */}
|
||||||
|
<TableContainer component={Paper}>
|
||||||
|
<Table>
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
{/* <TableCell colSpan={8} rowSpan={1} align="center" /> */}
|
||||||
|
<TableCell style={headStyle} align="left" />
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Nama User
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
ID Dokter
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Rating
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Notes
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Created On
|
||||||
|
</TableCell>
|
||||||
|
|
||||||
|
</TableRow>
|
||||||
|
{/* <TableRow>
|
||||||
|
<TableCell style={headStyle} align="left" />
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Tanggal Booking
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Tanggal Appointment
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Faskes
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Nama Dokter
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Spesialisasi
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Pasien
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Dokter
|
||||||
|
</TableCell>
|
||||||
|
</TableRow> */}
|
||||||
|
</TableBody>
|
||||||
|
{dataTableIsLoading ? (
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell colSpan={8} align="center">
|
||||||
|
Loading
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
) : (dataTableData.data && dataTableData.data.length === 0) ? (
|
||||||
|
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell colSpan={8} align="center">
|
||||||
|
No Data
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
) : (
|
||||||
|
<TableBody>
|
||||||
|
{dataTableData && dataTableData.map((row) => (
|
||||||
|
<Row key={row.id} row={row} />
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
)}
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
|
||||||
|
<BasePagination paginationData={dataTableData} onPageChange={handlePageChange} />
|
||||||
|
</Card>
|
||||||
|
</Stack>
|
||||||
|
);
|
||||||
|
}
|
||||||
38
frontend/dashboard/src/pages/Report/DoctorRating/index.tsx
Normal file
38
frontend/dashboard/src/pages/Report/DoctorRating/index.tsx
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import { Card, Grid, Container } from '@mui/material';
|
||||||
|
import { useParams } from 'react-router-dom';
|
||||||
|
import HeaderBreadcrumbs from '@/components/HeaderBreadcrumbs';
|
||||||
|
import Page from '@/components/Page';
|
||||||
|
import useSettings from '@/hooks/useSettings';
|
||||||
|
import List from './List_2';
|
||||||
|
|
||||||
|
export default function DoctorRating(){
|
||||||
|
const { themeStretch } = useSettings();
|
||||||
|
|
||||||
|
const { id } = useParams();
|
||||||
|
|
||||||
|
const pageTitle = 'Doctor Rating';
|
||||||
|
|
||||||
|
return(
|
||||||
|
<Page title = {pageTitle}>
|
||||||
|
<Container maxWidth = {themeStretch ? false : 'xl'}>
|
||||||
|
<HeaderBreadcrumbs heading= {pageTitle}
|
||||||
|
links={[
|
||||||
|
{
|
||||||
|
name: 'Report',
|
||||||
|
href: '/report',
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Doctor Rating',
|
||||||
|
href: '/doctorrating',
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
<List/>
|
||||||
|
|
||||||
|
</Container>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,440 +1,428 @@
|
|||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Button,
|
Button,
|
||||||
Card,
|
Card,
|
||||||
Collapse,
|
Collapse,
|
||||||
Paper,
|
Paper,
|
||||||
Select,
|
Select,
|
||||||
SelectChangeEvent,
|
SelectChangeEvent,
|
||||||
Table,
|
Table,
|
||||||
TableBody,
|
TableBody,
|
||||||
TableCell,
|
TableCell,
|
||||||
TableContainer,
|
TableContainer,
|
||||||
TableHead,
|
TableHead,
|
||||||
TableRow,
|
TableRow,
|
||||||
TextField,
|
TextField,
|
||||||
Typography,
|
Typography,
|
||||||
Stack,
|
Stack,
|
||||||
ButtonGroup,
|
ButtonGroup,
|
||||||
Grid,
|
Grid,
|
||||||
Chip,
|
Chip,
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
DialogContentText,
|
DialogContentText,
|
||||||
DialogActions,
|
DialogActions,
|
||||||
FormControl,
|
FormControl,
|
||||||
Autocomplete,
|
Autocomplete,
|
||||||
InputAdornment,
|
InputAdornment,
|
||||||
IconButton,
|
IconButton,
|
||||||
} from '@mui/material';
|
} from '@mui/material';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Link,
|
Link,
|
||||||
NavLink as RouterLink,
|
NavLink as RouterLink,
|
||||||
useSearchParams,
|
useSearchParams,
|
||||||
useNavigate,
|
useNavigate,
|
||||||
useParams,
|
useParams,
|
||||||
} from 'react-router-dom';
|
} from 'react-router-dom';
|
||||||
// hooks
|
// hooks
|
||||||
import React, { ChangeEvent, Component, useEffect, useRef, useState } from 'react';
|
import React, { ChangeEvent, Component, useEffect, useRef, useState } from 'react';
|
||||||
import useSettings from '../../../hooks/useSettings';
|
import useSettings from '../../../hooks/useSettings';
|
||||||
// components
|
// components
|
||||||
import axios from '../../../utils/axios';
|
import axios from '../../../utils/axios';
|
||||||
import { LaravelPaginatedData } from '../../../@types/paginated-data';
|
import { LaravelPaginatedData } from '../../../@types/paginated-data';
|
||||||
import { Icd } from '../../../@types/diagnosis';
|
import { Icd } from '../../../@types/diagnosis';
|
||||||
import BasePagination from '../../../components/BasePagination';
|
import BasePagination from '../../../components/BasePagination';
|
||||||
import { Practitioner } from '../../../@types/doctor';
|
import { Practitioner } from '../../../@types/doctor';
|
||||||
import CreateIcon from '@mui/icons-material/Create';
|
import CreateIcon from '@mui/icons-material/Create';
|
||||||
import { Props } from '../../../components/editor/index';
|
import { Props } from '../../../components/editor/index';
|
||||||
import { red } from '@mui/material/colors';
|
import { red } from '@mui/material/colors';
|
||||||
import { margin, padding } from '@mui/system';
|
import { margin, padding } from '@mui/system';
|
||||||
import { enqueueSnackbar } from 'notistack';
|
import { enqueueSnackbar } from 'notistack';
|
||||||
import { Controller } from 'react-hook-form';
|
import { Controller } from 'react-hook-form';
|
||||||
|
import { User } from '../../../Models/User';
|
||||||
|
|
||||||
import SvgIconStyle from '../../../components/SvgIconStyle';
|
|
||||||
import { GridSearchIcon } from '@mui/x-data-grid';
|
|
||||||
import { Search } from '@mui/icons-material';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
|
|
||||||
import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight';
|
|
||||||
|
|
||||||
export default function List(){
|
import SvgIconStyle from '../../../components/SvgIconStyle';
|
||||||
|
import { GridSearchIcon } from '@mui/x-data-grid';
|
||||||
|
import { Search } from '@mui/icons-material';
|
||||||
|
import { Icon } from '@iconify/react';
|
||||||
|
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
|
||||||
|
import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight';
|
||||||
|
|
||||||
const navigate = useNavigate();
|
export default function List(){
|
||||||
const { organization_id } = useParams();
|
|
||||||
const [searchParams, setSearchParams] = useSearchParams();
|
|
||||||
const [searchParamsOrganizations, setSearchParamsOrganizations] = useSearchParams();
|
|
||||||
const [searchParamsSpecialities, setSearchParamsSpecialities] = useSearchParams();
|
|
||||||
const [searchParamsFilter, setSearchParamsFilter] = useSearchParams();
|
|
||||||
|
|
||||||
function Filter(props: any) {
|
const navigate = useNavigate();
|
||||||
// SEARCH
|
const { organization_id } = useParams();
|
||||||
const searchInput = useRef<HTMLInputElement>(null);
|
const [searchParams, setSearchParams] = useSearchParams();
|
||||||
const [searchText, setSearchText] = useState('');
|
const [searchParamsOrganizations, setSearchParamsOrganizations] = useSearchParams();
|
||||||
|
const [searchParamsSpecialities, setSearchParamsSpecialities] = useSearchParams();
|
||||||
|
const [searchParamsFilter, setSearchParamsFilter] = useSearchParams();
|
||||||
|
|
||||||
//handle search
|
function Filter(props: any) {
|
||||||
const handleSearchChange = (event: any) => {
|
// SEARCH
|
||||||
const newSearchText = event.target.value ?? '';
|
const searchInput = useRef<HTMLInputElement>(null);
|
||||||
setSearchText(newSearchText);
|
const [searchText, setSearchText] = useState('');
|
||||||
};
|
|
||||||
|
|
||||||
const handleSearchSubmit = (event: any) => {
|
//handle search
|
||||||
event.preventDefault();
|
const handleSearchChange = (event: any) => {
|
||||||
|
const newSearchText = event.target.value ?? '';
|
||||||
|
setSearchText(newSearchText);
|
||||||
|
};
|
||||||
|
|
||||||
props.onSearch(searchText);
|
const handleSearchSubmit = (event: any) => {
|
||||||
};
|
event.preventDefault();
|
||||||
|
|
||||||
useEffect(() => {
|
props.onSearch(searchText);
|
||||||
// Trigger First Search
|
};
|
||||||
setSearchText(searchParams.get('search') ?? '');
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const item = [
|
useEffect(() => {
|
||||||
{
|
// Trigger First Search
|
||||||
id: '',
|
setSearchText(searchParams.get('search') ?? '');
|
||||||
value: '',
|
}, []);
|
||||||
name: 'Semua',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
const item = [
|
||||||
<form style={{ width: '100%' }}>
|
{
|
||||||
<Grid container spacing={2} sx={{ justifyContent: 'space-between', alignItems: 'center' }}>
|
id: '',
|
||||||
<Grid item xs={12} sm={12} md={12} lg={12}>
|
value: '',
|
||||||
<TextField
|
name: 'Semua',
|
||||||
id="search-input"
|
},
|
||||||
ref={searchInput}
|
];
|
||||||
variant="outlined"
|
|
||||||
fullWidth
|
return (
|
||||||
onChange={handleSearchChange}
|
<form style={{ width: '100%' }}>
|
||||||
onKeyDown={(event) => {
|
<Grid container spacing={2} sx={{ justifyContent: 'space-between', alignItems: 'center' }}>
|
||||||
if (event.key === 'Enter') {
|
<Grid item xs={12} sm={12} md={12} lg={12}>
|
||||||
handleSearchSubmit(event);
|
<TextField
|
||||||
}
|
id="search-input"
|
||||||
}}
|
ref={searchInput}
|
||||||
value={searchText}
|
variant="outlined"
|
||||||
InputProps={{
|
fullWidth
|
||||||
startAdornment: (
|
onChange={handleSearchChange}
|
||||||
<InputAdornment position="start">
|
onKeyDown={(event) => {
|
||||||
<Search />
|
if (event.key === 'Enter') {
|
||||||
</InputAdornment>
|
handleSearchSubmit(event);
|
||||||
),
|
}
|
||||||
placeholder: 'Search',
|
}}
|
||||||
}}
|
value={searchText}
|
||||||
/>
|
InputProps={{
|
||||||
</Grid>
|
startAdornment: (
|
||||||
</Grid>
|
<InputAdornment position="start">
|
||||||
</form>
|
<Search />
|
||||||
);
|
</InputAdornment>
|
||||||
}
|
),
|
||||||
function FilterForm(props: any) {
|
placeholder: 'Search',
|
||||||
return(
|
}}
|
||||||
<Grid
|
/>
|
||||||
container
|
</Grid>
|
||||||
spacing={2}
|
</Grid>
|
||||||
sx={{ p: 2, justifyContent: 'space-between', alignItems: 'center' }}
|
</form>
|
||||||
>
|
);
|
||||||
<Grid item xs={12} md={12} lg={12}>
|
}
|
||||||
<Filter onSearch={applyItems} />
|
function FilterForm(props: any) {
|
||||||
</Grid>
|
return(
|
||||||
|
<Grid
|
||||||
|
container
|
||||||
|
spacing={2}
|
||||||
|
sx={{ p: 2, justifyContent: 'space-between', alignItems: 'center' }}
|
||||||
|
>
|
||||||
|
<Grid item xs={12} md={12} lg={12}>
|
||||||
|
<Filter onSearch={applyItems} />
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
</Grid>
|
||||||
}
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function createData(doctor: Practitioner): Practitioner {
|
function createData(doctor: Practitioner): Practitioner {
|
||||||
return {
|
return {
|
||||||
...doctor,
|
...doctor,
|
||||||
};
|
/* user: doctor.user ? new User(doctor.user) : null; */
|
||||||
}
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function Row(props: { row: ReturnType<typeof createData> }) {
|
function Row(props: { row: ReturnType<typeof createData> }) {
|
||||||
const { row } = props;
|
const { row } = props;
|
||||||
const [open, setOpen] = React.useState(false);
|
const [open, setOpen] = React.useState(false);
|
||||||
const [openDialog, setOpenDialog] = React.useState(false);
|
const [openDialog, setOpenDialog] = React.useState(false);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<TableRow>
|
<TableRow>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<IconButton aria-label="expand row" size="small" onClick={() => setOpen(!open)}>
|
<IconButton aria-label="expand row" size="small" onClick={() => setOpen(!open)}>
|
||||||
{open ? <KeyboardArrowDownIcon /> : <KeyboardArrowRightIcon />}
|
{open ? <KeyboardArrowDownIcon /> : <KeyboardArrowRightIcon />}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell align="left">{row.nID ? row.nID : '-'}</TableCell>
|
|
||||||
<TableCell align="left">
|
<TableCell align="left">{row.user ? row.user.sFirstName : '-'}</TableCell>
|
||||||
{row.nIDUser ? row.nIDUser : '-'}
|
<TableCell align="left">{row.nIDDokter ? row.nIDDokter : '-'}</TableCell>
|
||||||
</TableCell>
|
<TableCell align="left">{row.nRating ? row.nRating : '-'}</TableCell>
|
||||||
<TableCell align="left">{row.nIDDokter ? row.nIDDokter : '-'}</TableCell>
|
<TableCell align="left">{row.sNotes ? row.sNotes : '-'}</TableCell>
|
||||||
<TableCell align="left">{row.sDokterName ? row.sDokterName : '-'}</TableCell>
|
<TableCell align="left">{row.dCreateOn ? row.dCreateOn : '-'}</TableCell>
|
||||||
<TableCell align="left">{row.dTanggalResep ? row.dTanggalResep : '-'}</TableCell>
|
|
||||||
<TableCell align="left">{row.sSource ? row.sSource : '-'}</TableCell>
|
{/* <TableCell align="center">
|
||||||
<TableCell align="left">{row.sKodeResep ? row.sKodeResep : '-'}</TableCell>
|
<ButtonGroup variant="text" aria-label="text button group">
|
||||||
<TableCell align="left">{row.sDiagnose ? row.sDiagnose : '-'}</TableCell>
|
<Link to={'/report/prescription/' + row.id + '/show'}>
|
||||||
<TableCell align="left">{row.sStatus ? row.sStatus : '-'}</TableCell>
|
<Button>
|
||||||
{/* <TableCell align="center">
|
<Icon icon="ph:eye-bold" style={{ width: '24px', height: '24px' }} />
|
||||||
<ButtonGroup variant="text" aria-label="text button group">
|
</Button>
|
||||||
<Link to={'/report/prescription/' + row.id + '/show'}>
|
</Link>
|
||||||
<Button>
|
</ButtonGroup>
|
||||||
<Icon icon="ph:eye-bold" style={{ width: '24px', height: '24px' }} />
|
</TableCell> */}
|
||||||
</Button>
|
</TableRow>
|
||||||
</Link>
|
{/* COLLAPSIBLE ROW */}
|
||||||
</ButtonGroup>
|
<TableRow>
|
||||||
</TableCell> */}
|
<TableCell
|
||||||
</TableRow>
|
style={{ paddingBottom: 0, paddingTop: 0, backgroundColor: 'rgba(244, 246, 248, 0.5)' }}
|
||||||
{/* COLLAPSIBLE ROW */}
|
colSpan={6}
|
||||||
<TableRow>
|
>
|
||||||
<TableCell
|
|
||||||
style={{ paddingBottom: 0, paddingTop: 0, backgroundColor: 'rgba(244, 246, 248, 0.5)' }}
|
|
||||||
colSpan={6}
|
|
||||||
>
|
|
||||||
{/* <Collapse in={open} timeout="auto" unmountOnExit>
|
{/* <Collapse in={open} timeout="auto" unmountOnExit>
|
||||||
<Box sx={{ margin: 1, pb: 2, pl: 4 }}>
|
<Box sx={{ margin: 1, pb: 2, pl: 4 }}>
|
||||||
<Grid container>
|
<Grid container>
|
||||||
<Grid item xs={12} sx={{ padding: 2 }}>
|
<Grid item xs={12} sx={{ padding: 2 }}>
|
||||||
<Grid container>
|
<Grid container>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
Metode Pembayaran
|
Metode Pembayaran
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
: {row.payment_method ? row.payment_method : '-'}
|
: {row.payment_method ? row.payment_method : '-'}
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
Jenis Benefit
|
Jenis Benefit
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
: -
|
: -
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
Durasi
|
Durasi
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
: {row.duration ? row.duration : '-'}
|
: {row.duration ? row.duration : '-'}
|
||||||
</Grid>
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Box>
|
</Grid>
|
||||||
</Collapse> */}
|
</Box>
|
||||||
</TableCell>
|
</Collapse> */}
|
||||||
</TableRow>
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
{/* END COLLAPSIBLE ROW */}
|
{/* END COLLAPSIBLE ROW */}
|
||||||
<Dialog
|
<Dialog
|
||||||
open={openDialog}
|
open={openDialog}
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
setOpenDialog(false);
|
setOpenDialog(false);
|
||||||
}}
|
}}
|
||||||
aria-labelledby="alert-dialog-title"
|
aria-labelledby="alert-dialog-title"
|
||||||
aria-describedby="alert-dialog-description"
|
aria-describedby="alert-dialog-description"
|
||||||
>
|
>
|
||||||
<DialogContent sx={{ p: 5 }}>
|
<DialogContent sx={{ p: 5 }}>
|
||||||
<Icon
|
<Icon
|
||||||
icon="eva:trash-2-outline"
|
icon="eva:trash-2-outline"
|
||||||
style={{
|
style={{
|
||||||
width: '100px',
|
width: '100px',
|
||||||
height: '100px',
|
height: '100px',
|
||||||
color: '#FF0000',
|
color: '#FF0000',
|
||||||
margin: 'auto',
|
margin: 'auto',
|
||||||
display: 'block',
|
display: 'block',
|
||||||
marginBottom: '20px',
|
marginBottom: '20px',
|
||||||
alignContent: 'center',
|
alignContent: 'center',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<DialogContentText sx={{ fontWeight: 'bold', pb: 1 }} id="alert-dialog-title">
|
<DialogContentText sx={{ fontWeight: 'bold', pb: 1 }} id="alert-dialog-title">
|
||||||
Apakah anda yakin ingin menghapus
|
Apakah anda yakin ingin menghapus
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
<Typography sx={{ fontWeight: 'bold' }} id="alert-dialog-title">
|
<Typography sx={{ fontWeight: 'bold' }} id="alert-dialog-title">
|
||||||
{row.name}?
|
{row.name}?
|
||||||
</Typography>
|
</Typography>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
<DialogActions>
|
<DialogActions>
|
||||||
<Button
|
<Button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setOpenDialog(false);
|
setOpenDialog(false);
|
||||||
}}
|
}}
|
||||||
color="primary"
|
color="primary"
|
||||||
>
|
>
|
||||||
Batal
|
Batal
|
||||||
</Button>
|
</Button>
|
||||||
{/* <Button
|
{/* <Button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
handleDelete(row.id);
|
handleDelete(row.id);
|
||||||
}}
|
}}
|
||||||
color="primary"
|
color="primary"
|
||||||
autoFocus
|
autoFocus
|
||||||
>
|
>
|
||||||
Hapus
|
Hapus
|
||||||
</Button> */}
|
</Button> */}
|
||||||
</DialogActions>
|
</DialogActions>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const headStyle = {
|
|
||||||
fontWeight: 'bold',
|
|
||||||
};
|
|
||||||
// Dummy Default Data
|
|
||||||
const [dataTableIsLoading, setDataTableLoading] = useState(true);
|
|
||||||
const [dataTableLastRequest, setDataTableLastRequest] = useState(0);
|
|
||||||
const [dataTableResponseState, setDataTableResponseState] = useState('idle');
|
|
||||||
const [dataTableData, setDataTableData] = useState<LaravelPaginatedData>({
|
|
||||||
current_page: 1,
|
|
||||||
data: [],
|
|
||||||
path: '',
|
|
||||||
first_page_url: '',
|
|
||||||
last_page: 1,
|
|
||||||
last_page_url: '',
|
|
||||||
next_page_url: '',
|
|
||||||
prev_page_url: '',
|
|
||||||
per_page: 10,
|
|
||||||
from: 0,
|
|
||||||
to: 0,
|
|
||||||
total: 0,
|
|
||||||
});
|
|
||||||
const [dataTablePage, setDataTablePage] = useState(5);
|
|
||||||
|
|
||||||
const loadDataTableData = async (appliedFilter: any | null = null) => {
|
|
||||||
setDataTableLoading(true);
|
|
||||||
const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]);
|
|
||||||
const response = await axios.get('/prescription', {
|
|
||||||
params: filter,
|
|
||||||
});
|
|
||||||
setDataTableLoading(false);
|
|
||||||
setDataTableData(response.data);
|
|
||||||
};
|
|
||||||
|
|
||||||
// const applyFilter = async (searchFilter: string) => {
|
|
||||||
// await loadDataTableData({ search: searchFilter });
|
|
||||||
// setSearchParams({ search: searchFilter });
|
|
||||||
// };
|
|
||||||
|
|
||||||
const applyItems = async (
|
|
||||||
searchFilter: string,
|
|
||||||
searchFilterOrganization: string,
|
|
||||||
searchFilterSpecialities: string
|
|
||||||
) => {
|
|
||||||
await loadDataTableData({
|
|
||||||
search: searchFilter,
|
|
||||||
organization_id: searchFilterOrganization,
|
|
||||||
speciality_id: searchFilterSpecialities,
|
|
||||||
});
|
|
||||||
setSearchParamsFilter({
|
|
||||||
search: searchFilter,
|
|
||||||
organization_id: searchFilterOrganization,
|
|
||||||
speciality_id: searchFilterSpecialities,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const handlePageChange = (event: ChangeEvent, value: number) => {
|
|
||||||
const filter = Object.fromEntries([...searchParams.entries(), ['page', value]]);
|
|
||||||
loadDataTableData(filter);
|
|
||||||
setSearchParams(filter);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
loadDataTableData();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Stack>
|
|
||||||
{/* <Ambulace /> */}
|
|
||||||
|
|
||||||
<Card sx={{ marginTop: '30px' }}>
|
|
||||||
<FilterForm sx={{ marginTop: '100px' }} />
|
|
||||||
|
|
||||||
{/* The Main Table */}
|
|
||||||
<TableContainer component={Paper}>
|
|
||||||
<Table>
|
|
||||||
<TableBody>
|
|
||||||
<TableRow>
|
|
||||||
{/* <TableCell colSpan={8} rowSpan={1} align="center" /> */}
|
|
||||||
<TableCell style={headStyle} align="left" />
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
ID Booking
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
ID User
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
ID Dokter
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
Nama Dokter
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
Tanggal Resep
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
Source
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
Kode Resep
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
Diagnosa
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} rowSpan={2} align="left">
|
|
||||||
Status
|
|
||||||
</TableCell>
|
|
||||||
</TableRow>
|
|
||||||
{/* <TableRow>
|
|
||||||
<TableCell style={headStyle} align="left" />
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Tanggal Booking
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Tanggal Appointment
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Faskes
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Nama Dokter
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Spesialisasi
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Pasien
|
|
||||||
</TableCell>
|
|
||||||
<TableCell style={headStyle} align="left">
|
|
||||||
Dokter
|
|
||||||
</TableCell>
|
|
||||||
</TableRow> */}
|
|
||||||
</TableBody>
|
|
||||||
{dataTableIsLoading ? (
|
|
||||||
<TableBody>
|
|
||||||
<TableRow>
|
|
||||||
<TableCell colSpan={8} align="center">
|
|
||||||
Loading
|
|
||||||
</TableCell>
|
|
||||||
</TableRow>
|
|
||||||
</TableBody>
|
|
||||||
) : (dataTableData.data && dataTableData.data.length === 0) ? (
|
|
||||||
|
|
||||||
<TableBody>
|
|
||||||
<TableRow>
|
|
||||||
<TableCell colSpan={8} align="center">
|
|
||||||
No Data
|
|
||||||
</TableCell>
|
|
||||||
</TableRow>
|
|
||||||
</TableBody>
|
|
||||||
) : (
|
|
||||||
<TableBody>
|
|
||||||
{dataTableData && dataTableData.map((row) => (
|
|
||||||
<Row key={row.id} row={row} />
|
|
||||||
))}
|
|
||||||
</TableBody>
|
|
||||||
)}
|
|
||||||
</Table>
|
|
||||||
</TableContainer>
|
|
||||||
|
|
||||||
<BasePagination paginationData={dataTableData} onPageChange={handlePageChange} />
|
|
||||||
</Card>
|
|
||||||
</Stack>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const headStyle = {
|
||||||
|
fontWeight: 'bold',
|
||||||
|
};
|
||||||
|
// Dummy Default Data
|
||||||
|
const [dataTableIsLoading, setDataTableLoading] = useState(true);
|
||||||
|
const [dataTableLastRequest, setDataTableLastRequest] = useState(0);
|
||||||
|
const [dataTableResponseState, setDataTableResponseState] = useState('idle');
|
||||||
|
const [dataTableData, setDataTableData] = useState<LaravelPaginatedData>({
|
||||||
|
current_page: 1,
|
||||||
|
data: [],
|
||||||
|
path: '',
|
||||||
|
first_page_url: '',
|
||||||
|
last_page: 1,
|
||||||
|
last_page_url: '',
|
||||||
|
next_page_url: '',
|
||||||
|
prev_page_url: '',
|
||||||
|
per_page: 10,
|
||||||
|
from: 0,
|
||||||
|
to: 0,
|
||||||
|
total: 0,
|
||||||
|
});
|
||||||
|
const [dataTablePage, setDataTablePage] = useState(5);
|
||||||
|
|
||||||
|
const loadDataTableData = async (appliedFilter: any | null = null) => {
|
||||||
|
setDataTableLoading(true);
|
||||||
|
const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]);
|
||||||
|
const response = await axios.get('/doctorrating ', {
|
||||||
|
params: filter,
|
||||||
|
});
|
||||||
|
setDataTableLoading(false);
|
||||||
|
setDataTableData(response.data);
|
||||||
|
};
|
||||||
|
|
||||||
|
// const applyFilter = async (searchFilter: string) => {
|
||||||
|
// await loadDataTableData({ search: searchFilter });
|
||||||
|
// setSearchParams({ search: searchFilter });
|
||||||
|
// };
|
||||||
|
|
||||||
|
const applyItems = async (
|
||||||
|
searchFilter: string,
|
||||||
|
searchFilterOrganization: string,
|
||||||
|
searchFilterSpecialities: string
|
||||||
|
) => {
|
||||||
|
await loadDataTableData({
|
||||||
|
search: searchFilter,
|
||||||
|
organization_id: searchFilterOrganization,
|
||||||
|
speciality_id: searchFilterSpecialities,
|
||||||
|
});
|
||||||
|
setSearchParamsFilter({
|
||||||
|
search: searchFilter,
|
||||||
|
organization_id: searchFilterOrganization,
|
||||||
|
speciality_id: searchFilterSpecialities,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const handlePageChange = (event: ChangeEvent, value: number) => {
|
||||||
|
const filter = Object.fromEntries([...searchParams.entries(), ['page', value]]);
|
||||||
|
loadDataTableData(filter);
|
||||||
|
setSearchParams(filter);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
loadDataTableData();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Stack>
|
||||||
|
{/* <Ambulace /> */}
|
||||||
|
|
||||||
|
<Card sx={{ marginTop: '30px' }}>
|
||||||
|
<FilterForm sx={{ marginTop: '100px' }} />
|
||||||
|
|
||||||
|
{/* The Main Table */}
|
||||||
|
<TableContainer component={Paper}>
|
||||||
|
<Table>
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
{/* <TableCell colSpan={8} rowSpan={1} align="center" /> */}
|
||||||
|
<TableCell style={headStyle} align="left" />
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Nama User
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
ID Dokter
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Rating
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Notes
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} rowSpan={2} align="left">
|
||||||
|
Created On
|
||||||
|
</TableCell>
|
||||||
|
|
||||||
|
</TableRow>
|
||||||
|
{/* <TableRow>
|
||||||
|
<TableCell style={headStyle} align="left" />
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Tanggal Booking
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Tanggal Appointment
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Faskes
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Nama Dokter
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Spesialisasi
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Pasien
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Dokter
|
||||||
|
</TableCell>
|
||||||
|
</TableRow> */}
|
||||||
|
</TableBody>
|
||||||
|
{dataTableIsLoading ? (
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell colSpan={8} align="center">
|
||||||
|
Loading
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
) : (dataTableData.data && dataTableData.data.length === 0) ? (
|
||||||
|
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell colSpan={8} align="center">
|
||||||
|
No Data
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
) : (
|
||||||
|
<TableBody>
|
||||||
|
{dataTableData && dataTableData.map((row) => (
|
||||||
|
<Row key={row.id} row={row} />
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
)}
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
|
||||||
|
<BasePagination paginationData={dataTableData} onPageChange={handlePageChange} />
|
||||||
|
</Card>
|
||||||
|
</Stack>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -13,6 +13,7 @@ import { AuthProvider } from '../contexts/LaravelAuthContext';
|
|||||||
import AuthGuard from '../guards/AuthGuard';
|
import AuthGuard from '../guards/AuthGuard';
|
||||||
import { Link, useParams, useSearchParams } from 'react-router-dom';
|
import { Link, useParams, useSearchParams } from 'react-router-dom';
|
||||||
import Prescription from '@/pages/Report/Prescription/Index';
|
import Prescription from '@/pages/Report/Prescription/Index';
|
||||||
|
import DoctorRating from '@/pages/Report/DoctorRating/Index';
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -290,6 +291,10 @@ export default function Router() {
|
|||||||
path: 'report/prescription',
|
path: 'report/prescription',
|
||||||
element: <Prescription/>,
|
element: <Prescription/>,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'report/doctorrating',
|
||||||
|
element: <DoctorRating/>,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'report/linksehat-payments',
|
path: 'report/linksehat-payments',
|
||||||
element: <LinksehatPayment />,
|
element: <LinksehatPayment />,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +0,0 @@
|
|||||||
[ZoneTransfer]
|
|
||||||
ZoneId=3
|
|
||||||
ReferrerUrl=https://docs.google.com/
|
|
||||||
HostUrl=https://doc-0g-9k-sheets.googleusercontent.com/export/36l11cvnhaccqmms6c85sbeosg/4je7nlqn7u5a74q5t8end74f28/1677645605000/106328900561681991688/114852934422671877320/1ZAov4ChGcV8LSn_2NVJT9sXneZCn9UKABvSXo8gkJeY?format=csv&id=1ZAov4ChGcV8LSn_2NVJT9sXneZCn9UKABvSXo8gkJeY&gid=0&dat=AP36HMUCq80X-P4ovM8wnZWhyaZAwfeMUSZjzSDLtxiRu-U-HKLyptb3Vn7NLxgzHGDj_wJGYjOx3kjxhcZdakeaTvUvwmpzgNI9sX1IDd6S0ohIn5YqmLA-_TqClPlWfpXoQHNeqcoTofr7KR0Iq1cpd5vvPH1OywrhxwV5z_333pXpsRUt3PU3pjAb4nQry85CtovhYGAhQOXH2u5b2HVSpR249DlF7fPghEbu0qKdDuTiAdySlTAu-p0p2MZlEZKbS19PYS-oerxtKoyg45ZsGXajCBuHKq1vMO9wQ56xRuFQQ9l-pTinl8GQdZAqSsDDfO0NntfIsv_Ijq35MLWIx0NjwR4NymWPB-fTCPq5lrgSK0q_tonWBLsscJrEttK2Lh1dBDqTdqC4bQb1Fe5ssUQrZL7_XFDKBaIvaW5oH5nrgpcw0WwnezY_QrHS52rb-wY1LUyk1fEUQl8znuVySnchKJrczVU1GXMWHLYUlyNyV1aEyQWYp0BHg-Iee0wG8HClnMbNMaiVpruWcEvH5tTrJ2CkjRQSjIK-08TAJB02cbHsWgOlV9TswWnsvo_Rsd7aCuZsGXFxaw644s0NmUp445s1-0Jidf10v0Ki1n3C2rO9asezai2ppWEN453GbKYf1mCnwhlzGCsYpCAvk-306KdMVDQB7KnNKrRJdlAMUkGAoV2YTU4Y_ADwAtuh8YenWgPTEUZqlWNbStyPpByzZIojn9mLYgScML4daDETGBzaI2KjO5IbAKBceXJl9kdxA9EfRnyTkDUXTphNA2baI6PiIIBeO0U6dX3zWt-rH0TOY2a3CznzB5bVcbHVmOLzSVyax-936E7S55_c18JzEG_5HbdnyDu4k8tUwj63p2sAwpswDd2CdpWnSkvG45ntPDvuUflSzNxILiISeWJxRcUjZ0XBjxLOqCYIS3f-Usgi
|
|
||||||
0
storage/.DS_Store
vendored
Executable file → Normal file
0
storage/.DS_Store
vendored
Executable file → Normal file
0
storage/app/.gitignore
vendored
Executable file → Normal file
0
storage/app/.gitignore
vendored
Executable file → Normal file
0
storage/app/public/.gitignore
vendored
Executable file → Normal file
0
storage/app/public/.gitignore
vendored
Executable file → Normal file
0
storage/debugbar/.gitignore
vendored
Executable file → Normal file
0
storage/debugbar/.gitignore
vendored
Executable file → Normal file
0
storage/framework/.gitignore
vendored
Executable file → Normal file
0
storage/framework/.gitignore
vendored
Executable file → Normal file
0
storage/framework/cache/.gitignore
vendored
Executable file → Normal file
0
storage/framework/cache/.gitignore
vendored
Executable file → Normal file
0
storage/framework/cache/data/.gitignore
vendored
Executable file → Normal file
0
storage/framework/cache/data/.gitignore
vendored
Executable file → Normal file
0
storage/framework/sessions/.gitignore
vendored
Executable file → Normal file
0
storage/framework/sessions/.gitignore
vendored
Executable file → Normal file
0
storage/framework/testing/.gitignore
vendored
Executable file → Normal file
0
storage/framework/testing/.gitignore
vendored
Executable file → Normal file
0
storage/framework/views/.gitignore
vendored
Executable file → Normal file
0
storage/framework/views/.gitignore
vendored
Executable file → Normal file
0
storage/logs/.gitignore
vendored
Executable file → Normal file
0
storage/logs/.gitignore
vendored
Executable file → Normal file
Reference in New Issue
Block a user