- Laravel: http://laravel.com/
- Laravel Nova Gist: https://gist.github.com/hofmannsven/9964613096d6b371ff933fc3202a44ef
- October CMS Gist: https://gist.github.com/hofmannsven/e71b90092fde4dc5cff9
- Laravel IDE helper for PhpStorm: https://github.com/barryvdh/laravel-ide-helper
- Composer cheatsheet: https://composerversioncheatsheet.com/
- Performance: https://serversforhackers.com/laravel-perf/
- Laravel Docs Workflow for Alfred: https://github.com/tillkruss/alfred-laravel-docs
- Package Boilerplate: https://laravelpackageboilerplate.com/
- Confident Laravel: https://confidentlaravel.com/
- Build an API with Laravel: https://buildanapi.com/
Show version: php artisan --version
Show all commands: php artisan list
Show all routes: php artisan route:list
Key: php artisan key:generate
Publish config file: php artisan config:publish
(opens an interactive dialogue to select the resource)
Removing frontend scaffolding: php artisan preset none
Setup with Vue: php artisan preset vue
<FilesMatch "^\.">
Order allow,deny
Deny from all
</FilesMatch>
Set the timezone:
sudo dpkg-reconfigure tzdata
Reset the date to the current date:
sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z"
Execute a command in the command line with a particular PHP version:
php5.6 artisan list
php7.0 artisan list
php7.1 artisan list
Problem: $ vagrant up
results in authentication failure.
default: Warning: Authentication failure. Retrying...
Solution: SSH into the VM via $ ssh vagrant@localhost -p 2222
and remove and regenerate the private keys:
wget https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub -O .ssh/authorized_keys
chmod 700 .ssh
chmod 600 .ssh/authorized_keys
chown -R vagrant:vagrant .ssh
Install Mcrypt via Homebrew: brew install mcrypt
Install Mcrypt for a particular PHP Version: sudo apt install php5.6-mcrypt
Make sure to grant Apache access to store data within storage
:
storage/app
storage/framework
storage/logs
See: https://gist.github.com/hofmannsven/8392477#permissions
If you don't need session cookies, use the
array
session driver. (source)
In app\Http\Kernel.php
comment out \App\Http\Middleware\VerifyCsrfToken::class
.
Daily logs: Add APP_LOG=daily
to your .env
config file.
Populate: php artisan db:seed
Populate a specific database: php artisan db:seed --database mysql_testing
Start queue: php artisan queue:work
Run queue forever and save to logfile: nohup php artisan queue:work --daemon > storage/logs/laravel.log &
Create new migration: php artisan make:migration create_tasks_table --create=tasks
Migrate: php artisan migrate
Migrate, again: php artisan migrate:refresh
Reset database with default seeds: php artisan migrate:fresh --seed
Migrate a specific database: php artisan migrate --database mysql_testing
Create new model: php artisan make:model Task
Create new model and do migration: php artisan make:model Task -m
Create new factory: php artisan make:factory TaskFactory --model="App\Task"
Create new policy: php artisan make:policy TaskPolicy
Create views: php artisan make:auth --views
Create: php artisan make:middleware BeforeMiddleware
Note: The name of the event is usally set in past tense (event is already done).
Add new event with listeners in app/Providers/EventServiceProvider.php
Create new events automatically based on your EventServiceProvider
: php artisan event:generate
Use the register()
method to register keys in the service container. The boot()
method is triggered after every service provider has been registered. The list of the providers can be found in config/app.php
listed as providers
.
Create command: php artisan make:console AppAbout --command=app:about
Usage: php artisan app:about
- PHPUnit cheatsheet: https://gist.github.com/hofmannsven/67deb0d36c991246b0a0
Create a feature test for a controller:
php artisan make:test Http/Controllers/UsersControllerTest
Create a unit test for a form request: php artisan make:test Http/Requests/StoreBlogPostTest --unit
Add testing database credentials to your phpunit.xml
file:
<server name="DB_HOST" value="192.168.10.10"/>
<server name="DB_DATABASE" value="homestead"/>
<server name="DB_USERNAME" value="homestead"/>
<server name="DB_PASSWORD" value="secret"/>
Use temporary in memory database:
<server name="DB_CONNECTION" value="sqlite"/>
<server name="DB_DATABASE" value=":memory:"/>
Re-generate autoload: composer dump-autoload
List dependencies of all dependencies: composer show --tree
Install on production: composer install --no-dev
Usage: php artisan tinker
- Create an user:
factory(App\User::class)->create();
- Send an email:
Mail::to('[email protected]')->send(new App\Mail\AccountCreated);
Clear application cache: php artisan cache:clear
Each time you make a change to your Blade service provider you need to clear the view cache.
Clear cache: php artisan view:clear
Cache: php artisan route:cache
Clear: php artisan route:clear
Composer: composer dump-autoload --optimize
Use controllers instead of closures within routes/web.php
file to cache routes.
Use route:cache
to skip route compilation on each request:
php artisan route:cache
Use config:cache
to reduce configuration parsing:
php artisan config:cache
The config cache includes config files and also the .env
file.
Attention: Make sure to not use env()
anywhere in the code base beside the config files!
env()
will return null
with config:cache
. Use config()
helper function instead.
Generated cache files can be found in: /bootstrap/cache
Use eager loading to avoid the n+1 query problem.
Save database queries using the with()
helper function and reduce the amout of queries made in total.
User::with('relation_attr')->get();
Reduce server memory usage on queries returning lots of data to not overload the server.
Attention: This may increase the database queries and overall loading time!
Use chunk()
helper function in the query builder.
Add index (KEY
) columns based an where
statemants whenever possible as MySQL is quite fast at indexing which will result in faster queries.
Set the debug bar config to explain within /config/debugbar.php
to explain each SELECT
statement:
'explain' => [
'enabled' => true
]
Set multi-column indexes as new migration from database/migrations/add_table_name_indexes.php
:
Schema::table('table_name', function(Blueprint $table) {
$table->index(['user_id', 'created_at']);
});
Use a key-value storage option like Redis or Memcached.
Set Redis drivers within .env
file:
CACHE_DRIVER=redis
SESSION_DRIVER=redis
And require predis
via composer: composer require predis/predis
Make sure to keep an eye on Redis memory usage on user heavy applications and save as litte information as posssbile to Redis to reduce memory usage.
Use and combine auth()->user()->id
and other dynamic parameters to generate a unique cache key with md5()
.
Use the decorator pattern when adding caching to the app.
Within ~/.zshrc
:
plugins=(git laravel5)
Very helpful, thanks!