<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class General_detail extends Model
{
// use SoftDeletes;
protected $table = 'general_detail';
protected $fillable = [
'user_id','location','phone','age','height','weight','eye','hair'
];
}