eloquent-driver icon indicating copy to clipboard operation
eloquent-driver copied to clipboard

Provides support for storing your Statamic data in a database, rather than flat files.

Results 69 eloquent-driver issues
Sort by recently updated
recently updated
newest added

### Bug description Assets without metadata trigger an exception and prevent the Control Panel from listing assets in the affected directory. ## Exception Details - Class: `TypeError` - Message: `Carbon\Carbon::createFromTimestamp():...

bug
assets

This pull request adds PHP 8.5 compatibility.

I reported a [bug](https://github.com/statamic/importer/issues/120) in the statamic importer, but it's an eloquent related problem. It's also causing the a problem in the overview of taxonomies (/cp/taxonomies) with the same error....

### Description When using the `{{collection}}` tag on a collection with taxonomies, the Eloquent Driver will query each term for each entry separately. Please see: https://github.com/statamic/eloquent-driver/pull/517

feature request
performance

### Bug description The v4.25.1 update ensures that empty folders are included in the asset browser by building the directory list from the database and then merging that with `$container->disk()->getFolders()`:...

bug
assets

This PR splits duration, height, last_modified, mime_type, size and width into their own columns in asset_meta, rather than them being part of the meta JSON. This also allows us to...

### Bug description Importing collections from file to eloquent, Changed config to: ``` 'collections' => [ 'driver' => 'eloquent', 'model' => \Statamic\Eloquent\Collections\CollectionModel::class, 'update_entry_order_queue' => 'default', 'update_entry_order_connection' => 'default', ], 'collection_trees'...

bug

### Bug description There's an issue about assets and containers, if I switched from `public` to `local` container the assets remained in `public` in the DB. For non-dev users it...

assets

This PR ensures that entry order is saved correctly when using a queue. The order was being set however as the entry wasn't saved during the same request the new...