See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| <?php | |
| namespace App\Filament\Resources\Trip; | |
| //... | |
| class PlaceResource extends Resource | |
| { | |
| public static function table(Table $table): Table | |
| { | |
| return $table |
| FROM laravelphp/vapor:php83 | |
| ARG IMAGICK_VERSION=3.7.0 | |
| RUN apk --update add \ | |
| ghostscript && \ | |
| rm /var/cache/apk/* | |
| RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/${IMAGICK_VERSION}.tar.gz \ | |
| && tar --strip-components=1 -xf /tmp/imagick.tar.gz \ |
| FROM laravelphp/vapor:php83 | |
| ARG IMAGICK_VERSION=3.7.0 | |
| RUN apk --update add \ | |
| ghostscript && \ | |
| rm /var/cache/apk/* | |
| RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/${IMAGICK_VERSION}.tar.gz \ | |
| && tar --strip-components=1 -xf /tmp/imagick.tar.gz \ |
| <?php | |
| namespace App\Providers; | |
| use Filament\Actions; | |
| use Filament\Forms; | |
| use Filament\Infolists; | |
| use Filament\Notifications\Notification; | |
| use Filament\Pages; | |
| use Filament\Support\Enums\MaxWidth; |