25 lines
545 B
PHP
25 lines
545 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class AxisTypeSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('axis_types')->insert([
|
|
['name' => 'آزادراه'],
|
|
['name' => 'بزرگراه'],
|
|
['name' => 'اصلی'],
|
|
['name' => 'فرعی'],
|
|
['name' => 'روستایی'],
|
|
]);
|
|
}
|
|
}
|