Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
app
/
Models
/
Filename :
CollegeWishlist.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class CollegeWishlist extends Model { protected $table = 'college_wishlist'; protected $primaryKey = 'college_wishlist_id'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'user_id', 'college_id', 'updated_at' ]; public $timestamps = false; }