Last change
on this file since f457265 was f457265, checked in by Berat Kjufliju <kufliju@…>, 4 years ago |
ADD technoweek offer, companies
|
-
Property mode
set to
100644
|
File size:
598 bytes
|
Rev | Line | |
---|
[0924b6c] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | namespace App\Models;
|
---|
| 4 |
|
---|
| 5 | use Illuminate\Support\Str;
|
---|
| 6 | use Illuminate\Database\Eloquent\Model;
|
---|
| 7 |
|
---|
| 8 | class UserProfile extends Model
|
---|
| 9 | {
|
---|
| 10 | protected $table = "user_profiles";
|
---|
| 11 |
|
---|
| 12 | protected $fillable = [
|
---|
| 13 | "technoblog_email",
|
---|
| 14 | "user_id",
|
---|
[f457265] | 15 | "is_company_profile",
|
---|
[0924b6c] | 16 | "profile_link",
|
---|
| 17 | "short_bio",
|
---|
| 18 | "profile_photo_link",
|
---|
| 19 | "cover_photo_link",
|
---|
| 20 | "technoblog_email",
|
---|
| 21 | "facebook_link",
|
---|
| 22 | "instagram_link",
|
---|
| 23 | "twitter_link",
|
---|
| 24 | "skype_link",
|
---|
| 25 | ];
|
---|
| 26 |
|
---|
| 27 | public function user() {
|
---|
| 28 | return $this->belongsTo(User::class);
|
---|
| 29 | }
|
---|
| 30 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.