stan errors fixed

This commit is contained in:
2025-03-16 01:34:49 +05:00
parent 821ec1fe47
commit 0b47fe694c
7 changed files with 131 additions and 51 deletions

View File

@@ -8,6 +8,26 @@ use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Spatie\Translatable\HasTranslations;
/**
* @property int $id
* @property string $name
* @property null|string $address
* @property null|string $unique_code
* @property string $region
* @property null|int $province_id
* @property null|string $billing_username
* @property null|string $billing_password
* @property null|string $phone_numbers
* @property bool $active
* @property null|string $created_at
* @property null|string $updated_at
* @property null|string $billing_swift_username
* @property null|string $billing_swift_password
* @property null|string $billing_visa_master_username
* @property null|string $billing_visa_master_password
* @property null|string $billing_sber_username
* @property null|string $billing_sber_password
*/
class Branch extends Model
{
use HasFactory;