1625781180
Hello friends, in this video, I’m going to work with states.
Laravel Employees Management application
Bootstrap admin dashboard
Github Repo: https://github.com/laraveller/laravel-employees-management
Website https://laraveller.com/
Twitter https://twitter.com/Laravellercom
Facebook Page https://www.facebook.com/laravellercom
Reddit https://www.reddit.com/user/Laraveller
Laravel 8 Tutorial https://bit.ly/2OJhh3D
Laravel Livewire Tutorial https://bit.ly/3dnfonp
Laravel Media Library https://bit.ly/3w4zrxQ
Laravel 8 API Tutorial https://bit.ly/3fq5Top
Laravel 8 URL Shortener https://bit.ly/31zKEby
Laravel Statamic CMS Tutorial https://bit.ly/3fngTTG
Laravel Admin Panel Tutorial https://bit.ly/3uBOM7q
#laravel #tutorial #project
#laravel #vuejs
1597487833
Here, i will show you how to create dynamic depedent country state city dropdown list using ajax in laravel.
Follow Below given steps to create dynamic dependent country state city dropdown list with jQuery ajax in laravel:
https://www.tutsmake.com/ajax-country-state-city-dropdown-in-laravel/
#how to create dynamic dropdown list using laravel dynamic select box in laravel #laravel-country state city package #laravel country state city drop down #dynamic dropdown country city state list in laravel using ajax #country state city dropdown list using ajax in php laravel #country state city dropdown list using ajax in laravel demo
1627450200
Hello Guys,
Today I will show you how to create laravel AJAX CRUD example tutorial. In this tutorial we are implements ajax crud operation in laravel. Also perform insert, update, delete operation using ajax in laravel 6 and also you can use this ajax crud operation in laravel 6, laravel 7. In ajax crud operation we display records in datatable.
#laravel ajax crud example tutorial #ajax crud example in laravel #laravel crud example #laravel crud example with ajax #laravel #php
1621398581
Hello Friend,
As you know Laravel 8 already officially released and today I will show you how to create CRUD operation in laravel 8, I have already perform many CRUD operations in my previous post like CRUD operation in ajax, CRUD operation in laravel 6 etc. So, today I will give you laravel 8 CRUD application example.
#laravel #php #laravel 8 crud operation example #crud operation #laravel 8 crud tutorial #crud operation in laravel 8
1625781180
Hello friends, in this video, I’m going to work with states.
Laravel Employees Management application
Bootstrap admin dashboard
Github Repo: https://github.com/laraveller/laravel-employees-management
Website https://laraveller.com/
Twitter https://twitter.com/Laravellercom
Facebook Page https://www.facebook.com/laravellercom
Reddit https://www.reddit.com/user/Laraveller
Laravel 8 Tutorial https://bit.ly/2OJhh3D
Laravel Livewire Tutorial https://bit.ly/3dnfonp
Laravel Media Library https://bit.ly/3w4zrxQ
Laravel 8 API Tutorial https://bit.ly/3fq5Top
Laravel 8 URL Shortener https://bit.ly/31zKEby
Laravel Statamic CMS Tutorial https://bit.ly/3fngTTG
Laravel Admin Panel Tutorial https://bit.ly/3uBOM7q
#laravel #tutorial #project
#laravel #vuejs
1595201363
First thing, we will need a table and i am creating products table for this example. So run the following query to create table.
CREATE TABLE `products` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
Next, we will need to insert some dummy records in this table that will be deleted.
INSERT INTO `products` (`name`, `description`) VALUES
('Test product 1', 'Product description example1'),
('Test product 2', 'Product description example2'),
('Test product 3', 'Product description example3'),
('Test product 4', 'Product description example4'),
('Test product 5', 'Product description example5');
Now we are redy to create a model corresponding to this products table. Here we will create Product model. So let’s create a model file Product.php file under app directory and put the code below.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable = [
'name','description'
];
}
Now, in this second step we will create some routes to handle the request for this example. So opeen routes/web.php file and copy the routes as given below.
routes/web.php
Route::get('product', 'ProductController@index');
Route::delete('product/{id}', ['as'=>'product.destroy','uses'=>'ProductController@destroy']);
Route::delete('delete-multiple-product', ['as'=>'product.multiple-delete','uses'=>'ProductController@deleteMultiple']);
#laravel #delete multiple rows in laravel using ajax #laravel ajax delete #laravel ajax multiple checkbox delete #laravel delete multiple rows #laravel delete records using ajax #laravel multiple checkbox delete rows #laravel multiple delete