added helpful comments to models

This commit is contained in:
Vedran Zelen
2020-07-27 10:43:22 +02:00
parent ce3c8e6459
commit 131ac97afa
14 changed files with 77 additions and 0 deletions
+6
View File
@@ -1,7 +1,13 @@
<?php
//The Model to a certain Controller, should contain a class with Controller name to which it belongs.
// Allows needed strings to passed onto the database. if there is none. class should appear empty.
//Reference to where the file belongs.
namespace App;
//allows the use of Model library
use Illuminate\Database\Eloquent\Model;
class CalendarEvent extends Model