upgrade filament

This commit is contained in:
2025-09-22 13:04:54 +05:00
parent 48593b234e
commit 39a444685a
85 changed files with 2555 additions and 1386 deletions

View File

@@ -2,6 +2,8 @@
namespace App\Modules\UserCompany\Models;
use App\Modules\UserCompany\Types\CompanyType;
use Illuminate\Support\Carbon;
use App\Models\User;
use App\Modules\Bank\Models\Bank;
use Illuminate\Database\Eloquent\Model;
@@ -9,15 +11,15 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property int $id [primary,unique]
* @property \App\Modules\UserCompany\Types\CompanyType $company_type
* @property CompanyType $company_type
* @property string $name
* @property string $ssb [unique]
* @property string $hb [unique]
* @property bool $default [default: false]
* @property int $user_id
* @property int $bank_id
* @property \Illuminate\Support\Carbon $created_at
* @property \Illuminate\Support\Carbon $updated_at
* @property Carbon $created_at
* @property Carbon $updated_at
*/
class UserCompany extends Model
{