Charles-Louis (@clgweb) 's Twitter Profile
Charles-Louis

@clgweb

Web developer

ID: 1001896344594845696

linkhttps://www.clg-dev.fr calendar_today30-05-2018 18:41:17

614 Tweet

35 Followers

192 Following

Backpack for Laravel (@laravelbackpack) 's Twitter Profile Photo

#Laravel Tip: Load data faster when the targeted value is an integer. Use ๐˜„๐—ต๐—ฒ๐—ฟ๐—ฒ๐—œ๐—ป๐˜๐—ฒ๐—ด๐—ฒ๐—ฟ๐—œ๐—ป๐—ฅ๐—ฎ๐˜„() instead of the ๐˜„๐—ต๐—ฒ๐—ฟ๐—ฒ๐—œ๐—ป() method to load data faster when the targeted value is an integer.

#Laravel Tip: Load data faster when the targeted value is an integer.
Use ๐˜„๐—ต๐—ฒ๐—ฟ๐—ฒ๐—œ๐—ป๐˜๐—ฒ๐—ด๐—ฒ๐—ฟ๐—œ๐—ป๐—ฅ๐—ฎ๐˜„()  instead of the ๐˜„๐—ต๐—ฒ๐—ฟ๐—ฒ๐—œ๐—ป() method to load data faster when the targeted value is an integer.
jhey โ–ฒ๐Ÿป๐ŸŽˆ (@jh3yy) 's Twitter Profile Photo

CSS Trick! ๐Ÿค™ You can create gradient borders on translucent elements using mask-clip and mask-composite with a pseudo-element ๐Ÿ”ฅ .gradient-border::after { mask-clip: padding-box, border-box; mask-composite: intersect; mask: linear-gradient(transparent, transparent),

Povilas Korop | Laravel Courses Creator & Youtuber (@povilaskorop) 's Twitter Profile Photo

PHP tip. If you want to check if a certain object is of a certain class, one of the methods is called just `is_a()`. Here's an example from the Spatie permissions package: github.com/spatie/laravelโ€ฆ Official PHP docs: php.net/manual/en/funcโ€ฆ

PHP tip.

If you want to check if a certain object is of a certain class, one of the methods is called just `is_a()`.

Here's an example from the Spatie permissions package: github.com/spatie/laravelโ€ฆ 

Official PHP docs: php.net/manual/en/funcโ€ฆ
Philo Hermans (@philo01) 's Twitter Profile Photo

Did you know you can refresh your parent Livewire component without using events? ๐Ÿ’ก Simply hook into the `$this->js()` method ๐Ÿค“ Full code and live example in the tweet below ๐Ÿ”—

Did you know you can refresh your parent <a href="/LaravelLivewire/">Livewire</a> component without using events? ๐Ÿ’ก Simply hook into the `$this-&gt;js()` method ๐Ÿค“

Full code and live example in the tweet below ๐Ÿ”—
Vite โšก (@vite_js) 's Twitter Profile Photo

โšก๏ธ Vite 5 is out! Performance improvements, big cleanups, and new features preparing the ground for even more innovation from the ecosystem! vitejs.dev/blog/announcinโ€ฆ

Simon Hamp (@simonhamp) 's Twitter Profile Photo

๐Ÿคฏ Holy moly! STOP EVERYTHING โœ‹๐Ÿผ๐Ÿ›‘ You can use CASE in MySQL virtual columns If your status columns need to be based on complex logic rather than a simple value, this is a really nice way to encode that at the DB layer

๐Ÿคฏ Holy moly!

STOP EVERYTHING โœ‹๐Ÿผ๐Ÿ›‘

You can use CASE in MySQL virtual columns

If your status columns need to be based on complex logic rather than a simple value, this is a really nice way to encode that at the DB layer
Dan Harrin ๐Ÿฆ’ (@danjharrin) 's Twitter Profile Photo

๐Ÿฆ’ Release day! We're introducing Filament ๐Ÿฆ’ v3.1, with a ton of new features that we've cooked up over the last few of months CSV Imports, query builder, sub-navigation and more ๐Ÿคฉ All features are deployed to our Demo, so you can check them out right now!

jhey โ–ฒ๐Ÿป๐ŸŽˆ (@jh3yy) 's Twitter Profile Photo

Future CSS Tip! ๐Ÿš€ You can create auto-resizing text inputs with one line of CSS ๐Ÿ”ฅ textarea, input { field-sizing: content; } No more JavaScript to sync a textarea height to fit the content ๐Ÿซถ Perfect for chat, messaging, comments, etc. ๐Ÿ’ฌ The size of your input will grow

Marcel Pociot ๐Ÿงช (@marcelpociot) 's Twitter Profile Photo

I did another test of Laravel Herd on Windows and I'm so proud of what we achieved. Both on macOS and Windows. This is by far the best and easiest development environment for Laravel and PHP developers.

Andrea Marco Sartori (@cerbero90) 's Twitter Profile Photo

In our Laravel app, when providing a file that is on an external storage - like S3 - we are not forced to download it on our server first ๐Ÿ™… Instead, we can stream even large files from S3 to the client in a memory-efficient way ๐ŸŒŠ #laravel #php

In our <a href="/laravelphp/">Laravel</a> app, when providing a file that is on an external storage - like S3 - we are not forced to download it on our server first ๐Ÿ™…

Instead, we can stream even large files from S3 to the client in a memory-efficient way ๐ŸŒŠ

#laravel #php
Martin Joo (@mmartin_joo) 's Twitter Profile Photo

๐ŸŽ‰ Who wants to be the first person to look at my new, completely finished book "Performance with Laravel"? I will choose a few people from the replies and retweets!

Gary Clarke (@garyclarketech) 's Twitter Profile Photo

Anonymous #php classes can implement interfaces just like any other class. I often use them as placeholders until I have created the real class. Watch me explain ๐Ÿ‘‡ garyclarketech.teachable.com/courses/test-dโ€ฆ

Anonymous #php classes can implement interfaces just like any other class.

I often use them as placeholders until I have created the real class.

Watch me explain ๐Ÿ‘‡
garyclarketech.teachable.com/courses/test-dโ€ฆ
OussamaMater (@oussamamater) 's Twitter Profile Photo

Laravel Tip ๐Ÿ’ก: The Conditionable Trait Do you write multiple "if" statements to call different methods in a class? Consider making your class "conditionable" by using Laravel's "Conditionable" trait ๐Ÿš€ #laravel

Laravel Tip ๐Ÿ’ก: The  Conditionable Trait

Do you write multiple "if" statements to call different methods in a class? Consider making your class "conditionable" by using Laravel's "Conditionable" trait ๐Ÿš€

#laravel
Gary Clarke (@garyclarketech) 's Twitter Profile Photo

Hereโ€™s a 50-minute tutorial on #PHP Attributes ๐Ÿ“บ Learn how to create Attributes for the purpose of applying validation rules to properties on a Data Transfer Object Check it out here ๐Ÿ‘‡ or bookmark it for later youtu.be/oSo4xbP6ZYo

Hereโ€™s a 50-minute tutorial on #PHP Attributes ๐Ÿ“บ

Learn how to create Attributes for the purpose of applying validation rules to properties on a Data Transfer Object

Check it out here ๐Ÿ‘‡ or bookmark it for later
youtu.be/oSo4xbP6ZYo
Brent (@brendt_gd) 's Twitter Profile Photo

I'm so proud: two years of working together with a lot of talented programmers, finally we tagged Tempest 1.0: a new framework for PHP web and application development embracing modern PHP tempestphp.com/blog/tempest-1 #php