Bottaajat/cultura

View on GitHub
app/Models/Topic.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Topic extends Model
{
     /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'topics';
    protected $fillable = [ 'name' ];

    public function exercises()
    {
        return $this->hasMany('App\Models\Exercise');
    }
}