Category: Uncategorized

  • Converting array to eloquent collection in laravel?

    Converting array to eloquent collection in laravel?

    To convert an array to Eloquent model in laravel, you typically create a new instance of the model and set the attributes using the array values. Inshort you can fill method to store $userData array to user object

  • Singleton Design Pattern

    Singleton Design Pattern

    Singleton design pattern ensures that a class has only one instance and provides a global point of access to that instance. Here’s an example of implementing the Singleton pattern in PHP: In this example: When using the Singleton pattern, you retrieve the instance of the class using getInstance() method, which ensures that only one instance…

  • Design Patterns

    Design Patterns

    Design patterns are recurring solutions to common problems encountered during software development. They represent best practices for designing and structuring code to achieve specific objectives while promoting maintainability, scalability, and flexibility. Here are some commonly recognized design patterns: Understanding these patterns and knowing when to apply them appropriately can significantly improve the quality and maintainability…

  • How to check laravel version?

    How to check laravel version?

    php artisan about This command will give you details about your laravel, php, composer versions. Also cache and drivers status with your environment mode. php artisan –version This flag command can be used with other coomands like: php artisan make:model –version app( )->version( ); The app() method will give you your laravel version. composer show…