nayanmonibaruah.hashnode.devDatabase ModellingIntroduction Imagine yourself building a family tree. What do you do while building it? Exactly, you try to arrange people onto different nodes of that tree and every node relates to some branches. Here the brunch defines the relationships and the pe...Jan 28, 2024·3 min read
nayanmonibaruah.hashnode.devLaravel Backend Configurationprerequisites Install laravel 9.x and above in your local system Install composer Install Xampp in your local system Creating The Laravel Project We will create a laravel project named "eLearning" you may change the name as you want it to be. We...Jan 22, 2024·2 min read
nayanmonibaruah.hashnode.devMastering Laravel Excel: A Guide to Effortless Installation and Seamless Data Import/ExportThis artical talks about: Installation of laravel excel overcoming the problems faced during installation Basic import and export of data prerequisite create a new project and migrate the default database Installation If you have PHP: ^7.2\|^...Jan 11, 2024·6 min read
nayanmonibaruah.hashnode.devCreating Custom Guards, Roles, and Token-Based Authorization in Laravel: A Comprehensive GuideAssume that we want to create a guard for students and want to generate a authorization token on login. Create table create the table using the following command php artisan create:migration create_students You will find your table within app/databa...Jan 6, 2024·6 min read
nayanmonibaruah.hashnode.devSoftware Architecture Patterns: MVC MVP MVVMINTRODUCTION MVC, MVP and MVVM are the most popular and industry recognized software architecture patterns. This architectures helps us in achiving modularity, ensure loose coupling in our softwares by separating business logic, user interaction and ...Jan 3, 2024·2 min read