Files
back-meditation/app/Models/Image.php
T
2025-09-26 11:42:31 +03:30

15 lines
263 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Image extends Model
{
protected $fillable = ['user_id', 'path', 'title', 'description','type',];
public function user() {
return $this->belongsTo(User::class);
}
}