Tumgik
rundev · 6 months
Text
Enterprise Resource Planning (ERP) Application: Integrated Business Management
Enterprise Resource Planning (ERP) application is software that consolidates various business functions and processes into one integrated system. ERP is designed to help the company to manage its resources more efficiently. ERP can integrate various operational aspects and business functions into a coherent entity. Here are some key points that explain ERP applications: 1. Deep Integration:ERP…
Tumblr media
View On WordPress
0 notes
rundev · 7 months
Text
Download Login Page HTML Bootstrap 5
Hello reader how are you? Do you need a login page for your project? Here I share with you to help your project faster and hope you like it. This login page uses Bootstrap 5 and Fontawesome for the icon you can modify it. Download Here Download: Fixed Asset Management and Tracking System
Tumblr media
View On WordPress
0 notes
rundev · 7 months
Text
Simple Guide to Creating a Wizard Slide Show with Bootstrap Carousel
I will share with you how to make a Wizard Slide Show using Bootstrap Carousel this time. I will make a simple way to make it easier to understand. Download Fixed Asset Management and Tracking System This is the code I use to make a Wizard: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Bootstrap…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Laravel Tips: Using Eloquent whereIn To Filter Column With 2 Value
These tips might be you didn’t know yet or never use, so the case is I have a table named Item, in that table I have a column named Category that has value Food, Non-Food, and Asset. I need to know the Food and Non-Food category so I use this command in Eloquent: $items = Item::whereIn('category', ['Food', 'Non Food'])->get(); That’s all you need. Hope this post can help you too.
Tumblr media
View On WordPress
4 notes · View notes
rundev · 1 year
Text
Laravel's Task Scheduling: Implementation on Your Project
I have Inventory Management System project that need to check buffer stock every hour, I have an idea to use Task Scheduling in Laravel and this article will show you how to make Task Scheduling in Laravel. First, you need to create a Job Queue Open your terminal and go to your application root, type this command: php artisan make:job CheckBufferStock Second, Make Work Logic Open the…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Docker Container: Some PHP Pages Are Not Loading
This issue comes from someone I didn’t know, he tried to load another page on index.php but when he clicked the link about.php it won’t load and showed an error: The requested URL was not found on this server. It’s because he uses relative URLs to navigate to another page. To fix this problem you need to set the base URL in the PHP code, this is what I usually do: In PHP code I make settings.php…
Tumblr media
View On WordPress
3 notes · View notes
rundev · 1 year
Text
How To Use ListView Widget In Flutter
Happy Eid Mubarak Reader, I will share how to use ListView Widget in Flutter. I will give you a simple way to make you understand. I hope this article can help you. Before we start, you need to create a new instance for the ListView widget then pass in a list of data to be displayed. To use ListView Widget, you can follow these steps: Create a list of data that you want to display in the…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
5 Ways to Optimize Your Platform for Affiliate Marketing Success
Affiliate marketing is a powerful way to earn passive income online. By partnering with affiliates and promoting their products, you can earn a commission on each sale made through your unique affiliate link. However, in order to be successful in affiliate marketing, you need to have a platform that is optimized for conversions. Here are five ways to optimize your platform for affiliate marketing…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Using Datatables Library in Laravel
Today I make a note for myself but maybe this is important for you too. Maybe many people know how to make datatable in the Laravel project. This is what I do to use datatable in the laravel project: I always install datatable using npm, the command like this: npm install datatables.net --save-dev I include the necessary CSS and Javascript files in HTML, I put CSS between the head tag and…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Unlocking the Power of Laravel OAuth for Secure User Registration and Login
Today I have a project to make a web app and my client said I have to make an OAuth login using Google and Facebook. The good news is I will share with you what I do to make login and register using Google or Facebook. First, Install Laravel Socialite using composer: command: composer require laravel/socialite Second, Create OAuth app credentials with Google and Facebook Third, Obtain the…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
IND EBook Download: Jaringan Komputer - Mengenal Komponen dan Protokol Penting
Today we make an ebook about Computer Networks, this time I share an ebook using Indonesian language click download button below to download the ebook via terabox. Download Ebook
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Retaining Dynamically Added Table Rows on Laravel Forms After Invalid Input
I have a case to make this decision, Retaining Dynamically Added Table Rows on my Laravel Project. These tips will share with you as usual, I really hope can help you if you have the same case as me. I have controller with this procedure: when the form validates is failed, store the data for dynamically added rows in session. This is the code: public function store(Request $request) { //…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Download Ebook: Unlocking the Secrets to Higher Google Rankings | A Comprehensive Guide to SEO
Hello good reader, I hope you guys doing good always. Today I will share an ebook about Unlocking the secrets to higher Google rankings. With this ebook, I hope you understand SEO techniques and what you need to do to make your website high rank in search engines. As we know Google can make a huge difference in your business and personal brand’s success. But many people didn’t know how to get…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
JQuery Tips and Tricks: Convert Textbox to Multiline
Glad we meet again here in Rundev Blog. Today I will give you a trick to convert Textbox to Multiline in a simple way. Check this code below: <!-- HTML --> <input type="text" id="my-textbox"> <!-- jQuery --> <script> $(document).ready(function() { $('#my-textbox') .attr('type', 'textarea') // change type to textarea .css('height', '100px') // set height for multiple lines .css('resize',…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Beginner Guide: Call Method on State Using VueJS
Hello, reader how are you today? I hope you are doing well and always. Today I will give you tips for beginner VueJS programmers. I will show my method to call a method on a data state in VueJS. Hope this post helps you. This is the simple example code for you: <template> <div> <p>{{ message }}</p> <button @click="reverseMessage">Reverse Message</button> </div> </template> <script> export…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
Django Python Tips: How To Build Django Project Collaborate with PHPMyAdmin and MAMP
If you are a Django developer maybe you need to read this post to have an idea. Today I will explain to you how to build Django project with phpmyadmin and mamp. Which allows you to access and manage your MySQL database. Follow this step: Step 1: Install MAMP First, you need to do is install MAMP on your computer, you can download MAMP here https://www.mamp.info/en/downloads/ I hope you can…
Tumblr media
View On WordPress
0 notes
rundev · 1 year
Text
How To Set Attributes In VueJS by Using The v-bind
Hello reader, how are you today? I hope you guys doing good. Today I will explain how to set attributes in VueJS by Using The V-BIND. This case is from my partner and now I will share it with you guys. This is the example code using v-bind: <template> <div> <label>Username:</label> <input type="text" name="username" v-bind:required="isRequired"> </div> </template> <script> export default…
Tumblr media
View On WordPress
0 notes