First Commit

This commit is contained in:
Muhammad Herdy Iskandar
2024-07-27 00:18:34 +07:00
commit a099b28858
168 changed files with 17696 additions and 0 deletions

30
app/Models/Attendance.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
namespace App\Models;
use App\Models\Theme;
use App\Models\Student;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Attendance extends Model
{
use HasFactory;
protected $fillable = [
'student_id',
'theme_id',
'check_in',
'check_out',
];
public function student()
{
return $this->belongsTo(Student::class);
}
public function theme()
{
return $this->belongsTo(Theme::class);
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Cofasilitator extends Model
{
use HasFactory;
protected $fillable = [
'name',
'nim',
'email',
'phone',
];
}

15
app/Models/Faculty.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Faculty extends Model
{
use HasFactory;
protected $fillable = [
'name',
];
}

22
app/Models/Major.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use App\Models\Faculty;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Major extends Model
{
use HasFactory;
protected $fillable = [
'faculty_id',
'name',
];
public function faculty()
{
return $this->belongsTo(Faculty::class);
}
}

22
app/Models/Peleton.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use App\Models\Cofasilitator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Peleton extends Model
{
use HasFactory;
protected $fillable = [
'name',
'cofasilitator_id'
];
public function cofasilitator()
{
return $this->belongsTo(Cofasilitator::class);
}
}

31
app/Models/Student.php Normal file
View File

@@ -0,0 +1,31 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Student extends Model
{
use HasFactory;
protected $fillable = [
'name',
'nim',
'image',
'major_id',
'email',
'phone',
'peleton_id'
];
public function major()
{
return $this->belongsTo(Major::class);
}
public function peleton()
{
return $this->belongsTo(Peleton::class);
}
}

16
app/Models/Theme.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Theme extends Model
{
use HasFactory;
protected $fillable = [
'name',
'year',
];
}

67
app/Models/User.php Normal file
View File

@@ -0,0 +1,67 @@
<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use App\Models\UserRole;
use Laravel\Sanctum\HasApiTokens;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Jeffgreco13\FilamentBreezy\Traits\TwoFactorAuthenticatable;
class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable, TwoFactorAuthenticatable;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
'avatar_url',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
public function getFilamentAvatar(): ?string
{
return $this->avatar_url;
}
public function getFilamentAvatarUrl(): ?string
{
return $this->avatar_url;
}
public function user_role()
{
return $this->belongsTo(UserRole::class, 'user_role_id');
}
public function canAccessPanel(Panel $panel): bool
{
return str_ends_with($this->email, '@gmail.com') && $this->user_role_id == 1;
}
}

15
app/Models/UserRole.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class UserRole extends Model
{
use HasFactory;
protected $fillable = [
'name',
];
}