Created temporary API

This commit is contained in:
Gregorio Chiko Putra
2019-05-09 14:23:17 +07:00
parent b1ab965f11
commit b0553839d0
5 changed files with 144 additions and 2 deletions

11
app/Siswa.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Siswa extends Model
{
use SoftDeletes;
}