Laravel 6 CRUD Tutorial With Example from scratch

Today, We want to share with you Laravel 6 CRUD Tutorial With Example.In this post we will show you Laravel 6 CRUD (Create Read Update Delete) Example from scratch, hear for Laravel 6 CRUD Application for Starter we will give you demo and example for implement.In this post, we will learn about Laravel 6 – simple crud operation with example with an demo.

Laravel 6 CRUD Tutorial With Example

There are the Following The simple About Laravel 6 CRUD Tutorial With Example Full Information With Example and source code.

As I will cover this Post with live Working example to develop Laravel 6 Crud Example Tutorial, so the some major files and Directory structures for Laravel 6 CRUD (Create Read Update Delete) From Scratch is following below.

Latest Laravel 6 Features & New Updates

There are the following the list of Laravel 6 Release New Features and Upgrade

  • Declaration Of Primary Key Type
  • Update on Eloquent BelongsTo::update Method
  • Added cursor method in Eloquent
  • Carbon 2.0 Supported
  • String & Array Helpers Moved To Package

Step 1 : Install Laravel 6

fresh Laravel 6 version application

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

Step 2: Database Configuration

.env : Laravel 6 CRUD Tutorial With Example from scratch

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=movies_list
DB_USERNAME=root
DB_PASSWORD=movies@465hdjhdjhrjd9865

Step 3: Create Migration

Laravel 6 php artisan command

php artisan make:migration create_movies_table --create=movies

“database/migrations”

increments('id');
            $table->string('name');
            $table->text('detail');
            $table->timestamps();
        });
    }
  
    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('movies');
    }
}

run this migration

php artisan migrate

Step 4: Add Resource Route

routes/web.php

Route::resource('movies','MovieController');

Step 5: Add Controller and Model

create new controller as MovieController

php artisan make:controller MovieController --resource --model=Movie

app/Http/Controllers/MovieController.php

paginate(5);
  
        return view('movies.index',compact('movies'))
            ->with('i', (request()->input('page', 1) - 1) * 5);
    }
   
    /**
     * Show the form for creating a new resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function create()
    {
        return view('movies.create');
    }
  
    /**
     * Store a newly created resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        $request->validate([
            'name' => 'required',
            'detail' => 'required',
        ]);
  
        Movie::create($request->all());
   
        return redirect()->route('movies.index')
                        ->with('success','Movie created successfully.');
    }
   
    /**
     * Display the specified resource.
     *
     * @param  \App\Movie  $movie
     * @return \Illuminate\Http\Response
     */
    public function show(Movie $movie)
    {
        return view('movies.show',compact('movie'));
    }
   
    /**
     * Show the form for editing the specified resource.
     *
     * @param  \App\Movie  $movie
     * @return \Illuminate\Http\Response
     */
    public function edit(Movie $movie)
    {
        return view('movies.edit',compact('movie'));
    }
  
    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \App\Movie  $movie
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, Movie $movie)
    {
        $request->validate([
            'name' => 'required',
            'detail' => 'required',
        ]);
  
        $movie->update($request->all());
  
        return redirect()->route('movies.index')
                        ->with('success','Movie updated successfully');
    }
  
    /**
     * Remove the specified resource from storage.
     *
     * @param  \App\Movie  $movie
     * @return \Illuminate\Http\Response
     */
    public function destroy(Movie $movie)
    {
        $movie->delete();
  
        return redirect()->route('movies.index')
                        ->with('success','Movie deleted successfully');
    }
}

app/Movie.php


Step 6: Add Blade Files

resources/views/movies/layout.blade.php




    Laravel 6 CRUD Application - TamilRokers free Download
    


  
@yield('content')

resources/views/movies/index.blade.php

@extends('movies.layout')
 
@section('content')
    

Laravel 6 CRUD Example from scratch - TamilRokers free Download

@if ($message = Session::get('success'))

{{ $message }}

@endif @foreach ($movies as $movie) @endforeach
No Name Details Action
{{ ++$i }} {{ $movie->name }} {{ $movie->detail }}
Show Edit @csrf @method('DELETE')
{!! $movies->links() !!} @endsection

resources/views/movies/create.blade.php

@extends('movies.layout')
  
@section('content')

Add New Movie

@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Name:
Detail:
@endsection

resources/views/movies/edit.blade.php

@extends('movies.layout')
   
@section('content')
    

Edit Movie

@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Laravel 6 CRUD Tutorial With Example from scratch

@csrf @method('PUT')
Name:
Detail:
@endsection

resources/views/movies/show.blade.php

@extends('movies.layout')
@section('content')
    

Show Movie

Name: {{ $movie->name }}
Details: {{ $movie->detail }}
@endsection
Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Develop Exclusive Laravel 6 CRUD Application with Input Validations : Laravel 6 CRUD Tutorial With Example from scratch.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment