🚗🏍️ Welcome to Motoshare!

Turning Idle Vehicles into Shared Rides & New Earnings.
Why let your bike or car sit idle when it can earn for you and move someone else forward?

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Partners earn. Renters ride. Everyone wins.

Start Your Journey with Motoshare

How to Insert Data using Tinker?

In this tutorial i’m going What is tinker and why using it and how to insert data using of tinker in easy way. I’m going to describe each of every thing from sctatch so please follow these tutorials.

What is Tinker?

Tinker Command(php artisan tinker) is used to interact directly with the database table to insert, delete, update data. It executes SQL commands through the command line.

First let’s go to install laravel project

composer create-project --prefer-dist laravel/laravel tinker

After Installation setup database So go to the .env file and add the database credentials. lets go to .env folder and put database name and connect to database.

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=crud-operation
DB_USERNAME=root
DB_PASSWORD=

Now Create Post table

php artisan make:migration create_posts_table --table=posts

Next go to your create_posts_table and add below column

$table->bigIncrements('id');
$table->integer('user_id')->unsigned();
$table->string('title');
$table->text('content');
$table->timestamps();

Now migrate the table.

php artisan migrate

Next go to your terminal and run below command.

php artisan tinker

Just paste below code as define.

$post = App\Post::create(['title'=>'php post tinker','content'=>'php content store tinker']);

Thanks i hope it’s helpfull for you 👍👍

Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.

Related Posts

Master Java & Spring Boot in Mumbai: Expert-Led Training for Developers

In the fast-paced world of enterprise software development, the demand for robust, scalable, and maintainable applications has never been higher. At the heart of this ecosystem lies…

Master Java Spring Boot in Hyderabad: Your Path to High-Demand Developer Skills

In today’s rapidly evolving tech landscape, Java remains one of the most robust, reliable, and widely adopted programming languages globally. However, the way we build Java applications…

Master Java with Spring Boot: Expert-Led Training in Bangalore

In the bustling tech hub of Bangalore, where innovation is the currency of success, mastering a robust and versatile framework is no longer optional—it’s imperative. For developers…

Java with Spring Boot Training in Hyderabad: A Complete Guide

In today’s fast-paced software industry, the demand for robust, scalable, and efficient backend systems is at an all-time high. Java, a language that has stood the test…

Master Java Spring Boot in Chennai: Expert-Led Training for Developers

In the ever-evolving landscape of software development, the ability to build robust, scalable, and efficient applications is a superpower. For developers in Chennai—a city pulsating with tech…

Application Security 101: A Beginner’s Guide for Developers

As a developer, your primary focus is on building functional, efficient, and innovative software. You are an architect of features and a solver of complex problems. However,…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x