1234567891011121314151617181920212223 |
- <?php
- namespace App\Models;
- use Dcat\Admin\Traits\HasDateTimeFormatter;
- use Illuminate\Database\Eloquent\Model;
- class TeamPhoto extends Model
- {
- use HasDateTimeFormatter;
- protected $table = 'team_photos';
- public function user()
- {
- return $this->belongsTo(User::class, 'user_id', 'id');
- }
- public function team()
- {
- return $this->belongsTo(Team::class, 'team_id', 'id');
- }
- }
|