<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Complaint extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'phone','complaint_type','complaint_desc'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'created_at', 'updated_at'
];
}