first commit

This commit is contained in:
Milos Holba
2021-01-11 15:36:41 +01:00
parent c2a5d4bc74
commit a8457cf261
7 changed files with 225 additions and 63 deletions

12
app/LanguageString.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LanguageString extends Model
{
public $timestamps = false;
protected $guarded = ['id'];
}