Added total time of a course, marking chapters and courses to sync offline.

This commit is contained in:
Krzysztof Płaczek
2022-09-15 14:35:02 +02:00
parent fc23506f92
commit b158ec6b5d
9 changed files with 43 additions and 14 deletions

View File

@@ -14,6 +14,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
* @property string $title
* @property string $duration
* @property integer $course_id
* @property bool $sync_offline
*/
class Chapter extends Model
{
@@ -27,6 +28,7 @@ class Chapter extends Model
'title',
'duration',
'course_id',
'sync_offline',
];
public function course(): BelongsTo