November 29, 2019
Introduction Django is a free and open-source web framework written in Python that adheres to the model template view (MTV) software architectural pattern. The MTV pattern is Django’s take on the model–view–controller (MVC) pattern. With Django, you can take Web applications from concept to launch in a matter of hours. Django takes care of much of the hassle of Web…
Read more
google.com, pub-6576731769895122, DIRECT, f08c47fec0942fa0
June 9, 2018
The process of developing new products (PDP) requires management to focus on quality control during product development to minimize production errors and failures. It is appropriate to apply these concepts to the model of software development. Ulrich and Eppinger (2000) state that the organization must decide to build the product, and figure 1 shows their…
Read more
google.com, pub-6576731769895122, DIRECT, f08c47fec0942fa0
June 2, 2018
Laravel component is added from version 5.4 to make life more easier. This feature was inspired by Vue.js and allows you to simplify building HTML elements into reusable areas. Step by step I will guide you through. Lets think you want to add a alert component. Step 1: Create a file in resources/views/components/alert.blade.php <div class=”alert…
Read more
google.com, pub-6576731769895122, DIRECT, f08c47fec0942fa0
May 29, 2018
Necessary to store multiple foreign keys in single database transaction to minimize database call and queries. Associate function is very important to minimize possibilities of database transactions, and security issue of database transaction. Lets assume you have a table with multiple foreign keys for example, Schema::create(‘deliveries’, function (Blueprint $table) { $table->increments(‘id’); $table->integer(‘client_id’)->unsigned()->index(); $table->foreign(‘client_id’)->references(‘id’)->on(‘clients’)->onDelete(‘cascade’); $table->integer(‘owner_id’)->unsigned()->index(); $table->foreign(‘owner_id’)->references(‘id’)->on(‘owners’)->onDelete(‘cascade’);…
Read more
google.com, pub-6576731769895122, DIRECT, f08c47fec0942fa0
May 26, 2018
Installing Dusk requires a couple of steps: composer require laravel/dusk After installing the Dusk package, run the dusk:install Artisan command: php artisan dusk:install A Browser directory will be created within your tests directory and will contain an example test. Next, set the APP_URL environment variable in your .env file. This value should match the URL you use…
Read more