-
### Bug description
When extending a base Eloquent model (for example, when you have sets of models with all the same base traits, properties, etc), Laravel Idea recognizes it is a Laravel object, bu…
-
I have a Model with a column that is casted to array
```php
protected $casts = [
'my_col' => 'array',
];
```
After calling `publish()->save()` array is saved as wrapped in double qu…
-
- Lunar version: 0.1.5
- Laravel Version: 9.45.1
- PHP Version: 8.1.13
- Database Driver & Version: MySQL 8.0.13
### Expected Behaviour:
Deleting a language doesn't throw errors and deletes t…
-
| Q | A
| ----------------- | ---
| Bug? | yes
| New Feature? | no
| Framework | Laravel
| Framework version | 8.12
| Package version | 13.0
| PHP ve…
-
Hi,
In the case where the model has soft delete enabled, once we delete the entry it puts it to the deleted state.. but there is no way to either restore it? or permanently delete it?
i can only s…
-
- Laravel Version: 9.43.0
- Nova Version: 4.19.4
- PHP Version: 8.1.12
### Brief Description:
When appending a filterable attribute to a relation field, Nova will load all records of the filte…
-
Consider a `CreateAddressData` object defined as follows:
```php
class CreateAddressData extends Data {
public function __construct(
public readonly string $street,
public readonly st…
-
Is there any way to use separate audit table for each model as this package "https://github.com/mpociot/versionable#use-different-version-table" allows this thing ?
-
To detect model use "soft delete"
in src/AuditableTraitObserver.php:
```php
if ($model->getConnection()->getSchemaBuilder()->hasColumn($model->getTable(), $deletedBy)) {
```
It would be bett…
-
# followed the following steps
composer require jd-dotlogics/laravel-grapesjs
php artisan vendor:publish --tag="laravel-grapesjs"
## then run migration but there was nothing to migrate…