<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCountriesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up() {
Schema::create('countries', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('code');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down() {
Schema::dropIfExists('countries');
}
}
C:\xampp\htdocs\reset\app\Models\Country.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Country extends Model {
use HasFactory;
protected $table = 'countries';
protected $primaryKey = 'id';
protected $fillable = [
'name', 'code',
];
}
<?php
namespace Database\Seeders;
use App\Models\Country;
use File;
use Illuminate\Database\Seeder;
class CountrySeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run() {
Country::truncate();
$json = File::get("database/data/country.json");
$countries = json_decode($json);
foreach ($countries as $key => $value) {
Country::create([
"name" => $value->name,
"code" => $value->code,
]);
}
}
}
C:\xampp\htdocs\reset\database\data\country.json
[
{
"name": "A 1",
"code": "B 1"
},
{
"name": "A 12",
"code": "B 12"
},
{
"name": "A 31",
"code": "B 13"
},
{
"name": "A 14",
"code": "B 14"
},
{
"name": "A 15",
"code": "B 15"
},
{
"name": "A 16",
"code": "B 16"
},
{
"name": "A 17",
"code": "B 17"
},
{
"name": "A 18",
"code": "B 18"
},
{
"name": "A 19",
"code": "B 19"
}]
How to Create Seeder with JSON data in Laravel?
By Hardik Savani August 7, 2021 Category : LaravelPlayUnmuteLoaded: 1.15%FullscreenHi,
In this short tutorial we will cover an laravel seed from json file example. i explained simply about how to create seeder with json file in laravel. if you have question about laravel seeder from json file then i will give simple example with solution. we will help you to give example of laravel seeder json.
Sometime we need to read long json file and store that data in you database and we need to do maybe in every setup then we always choose seeder for that. so here i will give you very simple example of how to create seeder with json data in laravel and you can use this example with laravel 6, laravel 7, laravel 8 and laravel 9 version.
Step 1: Create Json File
in first step we will create country json file with name and code. so you can create data folder inside database folder and put that file as bellow preview:
database/data/country.json
Step 2: Create Seeder and Country Model
here, we will create migration for countries table. so let's create migration as bellow:
php artisan make:migration create_countries_table
database/migrations/your_migtion_file.php
<?php use Illuminate\Database\Migrations\Migration;use Illuminate\Database\Schema\Blueprint;use Illuminate\Support\Facades\Schema; class CreateCountriesTable extends Migration{ /** * Run the migrations. * * @return void */ public function up() { Schema::create('countries', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('code'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('countries'); }}
now let's run migration:
php artisan migrate
next, add soft delete facade in user model as like bellow:
app/Models/County.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model; class Country extends Model{ use HasFactory; protected $fillable = [ 'name', 'code' ];}