Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
18 lines
259 B
PHP
18 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Checklist extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
public $timestamps = false;
|
|
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(ChecklistCategory::class);
|
|
}
|
|
}
|