Laravel Vue js Installation

A web framework provides a structure and starting point for creating your application, allowing you to focus on creating something amazing while you sweat the details. Installation composer create-project laravel/laravel…

0 Comments

Laravel LIke operator

function chat_user_search(Request $req){ $data = DB::table('users')->where('name', 'like', '%'.$req->search.'%')->get(); foreach ($data as $key => $value) { }

0 Comments

Laravel insert and display multiple records

View: <div class="container card" style="padding:20px"> @if (session('msg')) <div class="alert alert-success"> {{ session('msg') }} </div> @endif <h3 style="text-align: center;">Registration Form</h3> <form action="{{route('submit_records')}}" method="post"> <div class="form-group"> <label>Name</label> <input type="text" name="name" id="name" class="form-control"…

0 Comments

Laravel Ajax Crud

This article will give you example of laravel ajax crud example. you can understand a concept of laravel ajax crud example tutorial. I explained simply about laravel  jquery ajax crud…

0 Comments