source: app/Models/Department.php@ c5e383e

Last change on this file since c5e383e was c5e383e, checked in by beratkjufliju <kufliju@…>, 2 years ago

added db and storage backup

  • Property mode set to 100644
File size: 585 bytes
Line 
1<?php
2
3namespace App\Models;
4
5use Illuminate\Database\Eloquent\Factories\HasFactory;
6use Illuminate\Database\Eloquent\Model;
7use Illuminate\Notifications\Notifiable;
8
9class Department extends Model
10{
11 use HasFactory;
12
13 protected $table = "departments";
14
15 protected $fillable = ["name", "code", "location", "user_id", "no_of_folders"];
16
17 protected $casts = [
18 'created_at' => 'datetime:d-m-Y',
19 ];
20
21 public function folder(){
22 return $this->hasMany(Folder::class);
23 }
24
25 public function user(){
26 return $this->belongsTo(User::class);
27 }
28}
Note: See TracBrowser for help on using the repository browser.