initial commit

This commit is contained in:
2026-06-06 10:05:39 +07:00
commit b22608adbc
1577 changed files with 641460 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
<?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, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
'user_type',
'created_by',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, 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',
];
}
}
+38
View File
@@ -0,0 +1,38 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class operation extends Model
{
use HasFactory;
protected $fillable = [
'nama',
'umur',
'tanggal_lahir',
'suku',
'kelamin',
'alamat',
'anak_ke',
'riwayathamil',
'riwayatkeluarga',
'riwayat_penyakit_terdahulu',
'riwayat_kawin_kerabat',
'diagnosa',
'jenis_terapi',
'jenis_cleft',
'kelainan_kongenital',
'tanggal_operasi',
'teknikoperasi',
'operator',
'lokasioperasi',
'followup',
'created_by_id',
'created_by_name',
];
protected $dates = ['tanggal_lahir', 'tanggal_operasi'];
}
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class photo extends Model
{
use HasFactory;
protected $fillable = [
'operation_id', 'gambar', 'kategori',
];
}
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class request extends Model
{
use HasFactory;
protected $fillable = [
'nama', 'handphone', 'email', 'nik', 'kategori', 'tujuan', 'status', 'keterangan', 'created_by_id', 'operation_id',
];
protected $nullable = ['operation_id'];
public function operation()
{
return $this->belongsTo(Operation::class);
}
public function createdBy()
{
return $this->belongsTo(User::class, 'created_by_id');
}
}