Upload Pariwisata dan report pariwisata

This commit is contained in:
2025-02-17 23:58:31 +07:00
parent 8c236c460d
commit ecc243d1cc
27 changed files with 1258 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BusinessTypeCount extends Model
{
protected $table = 'business_type_counts';
protected $primaryKey = null;
public $timestamps = false;
protected $fillable = ['business_type', 'count'];
}