Add controller and table for marking

This commit is contained in:
Too
2018-06-20 00:38:32 +08:00
parent 95f4f25dd3
commit 3f2d9fbfb8
6 changed files with 141 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Marking extends Model
{
protected $fillable = ['email','marking'];
}