Tag Archives: Laravel

Laravel links 🏅

  1. Useful online tools (free only)
  2. Laravel modules (free only)
  3. Laravel Articles
    1. Laravel – Basics
    2. Profiling and optimization
    3. Advanced
    4. Laravel – Eloquent
    5. Laravel – Architecture
    6. Laravel – Response
    7. Laravel – REST
    8. Laravel – GUI:
    9. Laravel – validation
    10. Laravel – Authentication and authorization:
    11. Laravel – CRUD
    12. Laravel – Migrations
    13. Laravel – Mass assignment
    14. Laravel – How to create PDFs
    15. Laravel – Digitally sign PDFs:
    16. Laravel – Repository pattern discussions
    17. Laravel – logging
    18. Laravel – Troubleshooting
    19. Laravel – deployment
    20. Laravel – Tinker
    21. Inertia JS
  4. Laravel Theory
    1. Best practices
    2. Facades and statics

Useful online tools (free only)

Laravel modules (free only)

LibraryUsage
ClockworkProfiling
EnlightenDocumentation generation from test units
HorizonQueue manager
MonologAdvanced logging
Spatie Query builderAdvanced query builder
Spatie DB dumberEasy export database in .sql files

Laravel Articles

Laravel – Basics

Profiling and optimization

Advanced

Laravel – Eloquent

Laravel – Architecture

Laravel – Response

Laravel – REST

Laravel – GUI:

Laravel – validation

Laravel – Authentication and authorization:

Laravel – CRUD

Laravel – Migrations

Laravel – Mass assignment

Laravel – How to create PDFs

Laravel – Digitally sign PDFs:

Laravel – Repository pattern discussions

Laravel – logging

Laravel – Troubleshooting

Laravel – deployment

Laravel – Tinker

Inertia JS

Laravel Theory

Best practices

Facades and statics

Use PostMan to post JSON to REST backend

  1. Set web method to POST
  2. Add to the Headers:
    1. a key named: Accept with value application/json
    2. a key named: Content-Type with value application/json
  3. Optionally, if authentication is required:
    1. a key named: Authorization with value: bearer: token
  4. Add the JSON data to the raw area of Body of Postman
  5. Click send.

Token example::

Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9sb2NhbGhvc3RcL21pYWNcL2FwaVwvYXV0aFwvbG9naW4iLCJpYXQiOjE1NTc2NjgwOTUsImV4cCI6MTU1NzY3MTY5NSwibmJmIjoxNTU3NjY4MDk1LCJqdGkiOiJDa0VRVUZDa2xTZm9OcTZHIiwic3ViIjoxLCJwcnYiOiI4N2UwYWYxZWY5ZmQxNTgxMmZkZWM5NzE1M2ExNGUwYjA0NzU0NmFhIiwibmFtZSI6Ik1pQWMifQ.AWCjjEQh-Tmc4I9z3R0AA1QLUm5IuZAYSlRjeL5IrLo

Headers:

postman_laravel

Body:

postman_laravel_2