@Karan_WZ@Cinemex Es una certificación que Disney/Marvel da a salas que reúnen ciertas condiciones técnicas, por ejemplo: ~14 m de ancho de pantalla y sonido Dolby Atmos o mínimo 7.1, entre otros requisitos. En Cinemex, básicamente es su formato premium certificado para estos estrenos.
Lesson learned: If you're using Laravel Scout you may be reindexing significantly more than you expect by default
By default, any $model->save() will *always* issue a reindex on the model, because Scout listens for the Eloquent "Saved" event and doesn't check if the model had any changes
For example, if a user saves a Post and makes no changes -- Scout will reindex the model anyway
This can turn into *massive* search indexing queue churn at scale across all your searchable models unless you explicitly guard against it by only allowing a reindex when attributes you're indexing are changed:
Malcolm in the Middle: Life is Still Unfair
Al inicio todo era nostalgia.
Mantenía la esencia de la serie, ese humor que nunca necesitó cambiar.
Me reí, lloré y en medio del llanto me volví a reír.
El mismo humor demuestra que también sabe crecer.
Ojalá no haya sido un cierre.
📦 This one is almost ready for prime time
https://t.co/cz7ItsKw7y
Only has to be code reviewed before tagging 1.0
Feel free to already peek at the docs and code. All questions and remarks are welcome.
Con el trabajo hasta el cuello, decidí pausar con Les escargots (Los Caracoles). Un cortito que te sacude con tensión y humor inesperado. El soundtrack, impecable. Breve, pero pega fuerte.
📅Año: 1966
🎬Director: René Laloux
📺Plataforma: MUBI
Acabo de ver The Shining (El resplandor) y creo que acabo de ver también una de las películas más sobrevaloradas de la historia. Actuaciones sobreactuadas, sin tensión real, y un final que terminé más por compromiso que por interés.
@insank18 Amazing, just one thing...
Displaying more than the last four digits goes against the security recommendations of many standards such as the PCI DSS (Payment Card Industry Data Security Standard), which suggests minimizing the exposure of credit card data.
Option B: #Laravel Tips 💡
1️⃣ You can simplify eager loading of nested relationships in Laravel by using nested arrays instead of dot notation. This approach makes your code more readable and organized.
Tiny RDM is a cross-platform Redis desktop manager for Mac, Windows, and Linux,offering connection management, key value operations, data viewing formats, andmore
#Laravel tip:
Use the tap() Helper for Fluent Method Calls
The tap() helper simplifies chaining method calls by allowing you to perform operations on an object within a chain.
Here’s how:
Hey Laravel Developers 👩💻
Laravel provides the belongsToMany() relationship, allowing us to form many-to-many relationships between two models in our application.
An example of this relationship is the User and Role model where one Role can belong to many users and one user can belong to many roles.
We create an intermediate/pivot table to map the relationships between these two models.
But do you know that you can also maintain timestamps for when these relationships were formed, by using the withTimestamps() method while creating the relationship?
#laravel #php
#Laravel Tip
By default, Laravel accepts emails without a TLD (like example@email).
If you want to check that. Just add `:filter` to only accept emails with a proper top-level domain (TLD) 👇