<?php

use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Seed the application's database.
     *
     * @return void
     */
    public function run()
    {
        $this->call(RolesTableSeeder::class);
        $this->call(PermissionsTableSeeder::class);
        $this->call(RolesPermissionsTableSeeder::class);
        $this->call(UsersTableSeeder::class);
        $this->call(UserProfilesTableSeeder::class);
        $this->call(CategoriesTableSeeder::class);
//        $this->call(TagsTableSeeder::class);
//        $this->call(PostsTableSeeder::class);
//        $this->call(PostsTagsTableSeeder::class);
    }
}
