develop
Last change
on this file since e2e83fc was 0df7a93, checked in by beratkjufliju <kufliju@…>, 3 years ago |
bug fixes
|
-
Property mode
set to
100644
|
File size:
758 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace App\Models;
|
---|
4 |
|
---|
5 | use Illuminate\Database\Eloquent\Factories\HasFactory;
|
---|
6 | use Illuminate\Database\Eloquent\Model;
|
---|
7 | use Illuminate\Notifications\Notifiable;
|
---|
8 |
|
---|
9 | class Department extends Model
|
---|
10 | {
|
---|
11 | use Notifiable;
|
---|
12 | use HasFactory;
|
---|
13 |
|
---|
14 | protected $table = "departments";
|
---|
15 |
|
---|
16 | protected $fillable = ["name", "code", "location", "user_id", "no_of_folders"];
|
---|
17 |
|
---|
18 | protected $casts = [
|
---|
19 | 'created_at' => 'datetime:d-m-Y',
|
---|
20 | ];
|
---|
21 |
|
---|
22 | public function getCreatedByName()
|
---|
23 | {
|
---|
24 | return User::where('id', $this->user_id)->pluck('username')->first();
|
---|
25 | }
|
---|
26 |
|
---|
27 | public function folder(){
|
---|
28 | return $this->hasMany(Folder::class);
|
---|
29 | }
|
---|
30 |
|
---|
31 | // public function getDeptId(){
|
---|
32 | // return Department::where('id', $this->id)->get();
|
---|
33 | // }
|
---|
34 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.