public function getKeyType()
{
if (in_array($this->getKeyName(), $this->uniqueIds())) {
return 'string';
}
return $this->keyType;
}
покажите вашу миграцию или таблицу
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('agreements', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->foreignUuid('agreement_type_id')->constrained();
$table->boolean('active')->default(false);
$table->enum('form', ['file', 'link', 'text'])->nullable();
$table->string('link')->nullable();
$table->mediumText('text_md')->nullable();
$table->mediumText('text_html')->nullable();
$table->string('path')->nullable();
$table->string('mime_type')->nullable();
$table->mediumText('whats_new_md')->nullable();
$table->mediumText('whats_new_html')->nullable();
$table->timestamps();
});
}
модели id, назван как id, да и ещё как int
class Agreement extends Model
{
use HasFactory, HasUuids;
protected $guarded = [];
protected $casts = [
'active' => 'boolean',
'form' => AgreementForm::class
];
protected $attributes = [
'active' => false,
];
//...
Вот думаю может мне просто установить реакт и реактдум и потом плагин vite react и просто создать типовую структуру реакт проекта с папками dist,public,src, и файлом index.html прям в корне проекта ларавел, рядом с vite config
из-за отсутствия бд начинает кидать ошибку
AgreementType::whereNotNull('last_agreement_id')->withLastApprovedByProfile($profile->id)->where('last_agreement_approved', false);
генерит такой вот запрос:select
`agreement_types`.*,
exists(select * from `agreement_profile` where `agreement_types`.`last_agreement_id` = `agreement_profile`.`agreement_id` and `profile_id` = ?) as `last_agreement_approved`
from `agreement_types`
where
`last_agreement_id` is not null
and `last_agreement_approved` = ?
order by
`name` asc
Unknown column 'last_agreement_approved' in 'where clause'
, надо делать отдельный скоупpublic function scopeWhereLastNotApprovedByProfile(Builder $query, string $profileId): void
{
$query->whereDoesntHave('lastApproved', function ($q) use ($profileId) {
$q->where('profile_id', $profileId);
})
}
тогда exists переедет в where:select
`agreement_types`.*
from `agreement_types`
where
`last_agreement_id` is not null
and not exists (select * from `agreement_profile` where `agreement_types`.`last_agreement_id` = `agreement_profile`.`agreement_id` and `profile_id` = ?)
order by
`name` asc
нужно либо запретить сжиматься
Какой-нибудь date-fns