12-cactus/espinoso

View on GitHub
app/Model/TelegramChat.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
 
namespace App\Model;
 
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
 
/**
* Class TelegramChat
* @package App\Model
*
* @property int id
* @property string type
* @property string title
* @property string username
* @property string first_name
* @property string last_name
* @property bool all_members_are_administrators
* @property string photo
* @property string description
* @property Carbon created_at
* @property Carbon updated_at
*/
class TelegramChat extends Model
{
public function tags()
{
return $this->hasMany(Tag::class);
}
}