rewrite proses harim

This commit is contained in:
2025-07-30 17:28:22 +03:30
parent f123191eb4
commit a9c8432013
18 changed files with 458 additions and 6 deletions

13
app/Models/Harim.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Harim extends Model
{
use HasFactory;
protected $guarded = [];
protected $table = 'harim';
}