current location:Home > Technical Articles > PHP Framework

  • Laravel - Action URL
    Laravel - Action URL
    Laravel - Action URL - Laravel 5.7 introduces a new feature called “callable action URL”. This feature is similar to the one in Laravel 5.6 which accepts string in action method. The main purpose of the new syntax introduced Laravel 5.7 is to directl
    Laravel 370 2024-08-27 11:40:57
  • Laravel - Dump Server
    Laravel - Dump Server
    Laravel - Dump Server - Laravel dump server comes with the version of Laravel 5.7. The previous versions do not include any dump server. Dump server will be a development dependency in laravel/laravel composer file.
    Laravel 934 2024-08-27 11:41:38
  • Laravel - Pagination Customizations
    Laravel - Pagination Customizations
    Laravel - Pagination Customizations - Laravel includes a feature of pagination which helps a user or a developer to include a pagination feature. Laravel paginator is integrated with the query builder and Eloquent ORM. The paginate method automatical
    Laravel 652 2024-08-27 11:45:11
  • Laravel - Artisan Commands
    Laravel - Artisan Commands
    Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?
    Laravel 764 2024-08-27 11:46:34
  • Laravel - Guest User Gates
    Laravel - Guest User Gates
    Laravel - Guest User Gates - The Guest User Gates feature is an add-on to the latest 5.7 version released in September 2018. This feature is used to initiate the authorization process for specific users.
    Laravel 478 2024-08-27 11:47:28
  • Laravel - Understanding Release Process
    Laravel - Understanding Release Process
    Laravel - Understanding Release Process - Every web application framework has its own version history and it is always being updated and maintained. Every latest version brings new functionality and functions which are either changed or deprecated, s
    Laravel 544 2024-08-27 10:51:23
  • Laravel - Hashing
    Laravel - Hashing
    Laravel - Hashing - Hashing is the process of transforming a string of characters into a shorter fixed value or a key that represents the original string. Laravel uses the Hash facade which provides a secure way for storing passwords in a hashed mann
    Laravel 1179 2024-08-27 11:56:54
  • Laravel - Encryption
    Laravel - Encryption
    Laravel - Encryption - Encryption is a process of converting a plain text to a message using some algorithms such that any third user cannot read the information. This is helpful for transmitting sensitive information because there are fewer chances
    Laravel 793 2024-08-27 11:59:54
  • Laravel - Artisan Console
    Laravel - Artisan Console
    Laravel - Artisan Console - Laravel framework provides three primary tools for interaction through command-line namely: Artisan, Ticker and REPL. This chapter explains about Artisan in detail.
    Laravel 488 2024-08-27 13:12:12
  • Laravel - Authorization
    Laravel - Authorization
    Laravel - Authorization - In the previous chapter, we have studied about authentication process in Laravel. This chapter explains you the authorization process in Laravel.
    Laravel 677 2024-08-27 13:12:53
  • Laravel - Authentication
    Laravel - Authentication
    Laravel - Authentication - Authentication is the process of identifying the user credentials. In web applications, authentication is managed by sessions which take the input parameters such as email or username and password, for user identification.