Files
aibuddytool/app/Models/ShopeeSellerCategory.php
2023-10-01 22:23:38 +08:00

49 lines
850 B
PHP

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class ShopeeSellerCategory
*
* @property int $id
* @property string $seller
* @property int $category_id
* @property Carbon|null $last_ai_written_at
* @property int $write_counts
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @property Category $category
*
* @package App\Models
*/
class ShopeeSellerCategory extends Model
{
protected $table = 'shopee_seller_categories';
protected $casts = [
'category_id' => 'int',
'last_ai_written_at' => 'datetime',
'write_counts' => 'int'
];
protected $fillable = [
'seller',
'category_id',
'last_ai_written_at',
'write_counts'
];
public function category()
{
return $this->belongsTo(Category::class);
}
}