добавлен авторищация по api, экспорт и импорт продуктов

This commit is contained in:
abdurahman
2024-01-08 17:13:13 +05:00
parent c08b36d1b6
commit af1e381ca0
14 changed files with 906 additions and 434 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace Modules\Api\Entities;
use Carbon\Carbon;
use Modules\Support\Eloquent\Model;
use Illuminate\Support\Str;
class ApiToken extends Model{
protected $fillable = ['user_id', 'token'];
public $timestamps = false;
}