File manager - Edit - /var/www/html/portal/database/seeders/ArteSacraSeeder.php
Back
<?php namespace Database\Seeders; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; use Illuminate\Support\Str; use Illuminate\Support\Carbon; class ArteSacraSeeder extends Seeder { public function run() { // Inserindo dados na tabela arte_material DB::connection('mysql_arte_sacra')->table('material')->insert([ [ 'id' => Str::uuid(), 'material' => 'Azulejo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Barro', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Bronze', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Bronze Fundido', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Cera', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Cerâmica', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Escultura', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Gesso', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Gesso Moldagem', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Louça', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Madeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Madeira Entalhe', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Madeira Policromada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Marfim', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Mármore', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Metal', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Papel', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Pasta Madeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Pergaminho', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Porcelana', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Porcelana Francesa', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Resina', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Tecido', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Tela', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Terracota', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'material' => 'Vidro', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_classe DB::connection('mysql_arte_sacra')->table('classe_arte')->insert([ [ 'id' => Str::uuid(), 'classe' => 'Fragmento', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'classe' => 'Detalhe', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'classe' => 'Composta', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'classe' => 'Repetição', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'classe' => 'Gêmeas', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_designacao DB::connection('mysql_arte_sacra')->table('designacao')->insert([ [ 'id' => Str::uuid(), 'designacao' => 'Atributo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'designacao' => 'Exposição', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'designacao' => 'Exibição', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'designacao' => 'Procissão', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'designacao' => 'Vestimenta', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_mod_aquisicao DB::connection('mysql_arte_sacra')->table('modo_aquisicao')->insert([ [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Doação', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Comodato', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Transferência', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Empréstimo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Recolhimento', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Compra', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Registro Inventário', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Não encontrado', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Guarda Emergencial', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'modo_Aquisicao' => 'Devolvido', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_tipo_acervo DB::connection('mysql_arte_sacra')->table('tipo_acervo')->insert([ [ 'id' => Str::uuid(), 'tipo' => 'Arqueologia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Atributo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Bandeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Bem integrado', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Busto', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Cartaz', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Catálogo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Convite', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Desenho', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Diversos', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Documento', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Escudo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Escultura', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Estandarte', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Ex-voto', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Flâmula', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Foto', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Foto Pintura', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Fotografia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Fragmento', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Guia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Imagem', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Imagem Composta', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Livro', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Medalha', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Mobília', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Moeda', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Objeto Litúrgico', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Peça', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Peruca', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Peruca natural', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Peruca Sintética', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Quadro', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Biojóia Sementes Natural', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Contas Artificiais', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Contas Cristal', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Contas Natural', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Contas Pérola', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Contas Pérola Artificial', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Contas Prata', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Terço Madeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tipo' => 'Têxtil', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_proprietario DB::connection('mysql_arte_sacra')->table('proprietario')->insert([ [ 'id' => Str::uuid(), 'proprietario' => 'Capela Bom Jesus do Belém', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela Nossa S. Piedade - Gipóia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela da Serra DÁgua', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela Santa Rita do Bracui', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela São José do Bracui', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela Santa Casa da Misericórdia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela N. S. do Bonfim - Ilha do Bonfim', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Convento do Carmo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Convento São Bernardino de Sena', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja N. S. da Lapa e Boa Morte', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja Santíssima Trindade - Jacuecanga', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja Freguesia de Santana - Ilha Grande', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja da Matriz N. S. da Conceição', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja Santa Luzia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja N. S. do Rosário - Vila Histórica', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja N. S. do Rosário - Camorim Grande', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja N. S. da Ribeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Irmandade de São Benedito', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Ordem Terceira de São Francisco', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Ordem Terceira do Carmo', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Museu Arte Sacra', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Acervo Pessoal', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela N. S. da Ribeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela Bom Jesus do Belém', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Não Identificado', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela Nosso Senhor do Bonfim', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja Sagrado Coração de Jesus - Monsuaba', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Igreja da Santíssima Trindade - Verolme', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'proprietario' => 'Capela N. S. Lapa - Ariró', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_tecnica DB::connection('mysql_arte_sacra')->table('tecnica')->insert([ [ 'id' => Str::uuid(), 'tecnica' => 'Cera', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Cozimento', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Cozimento Pintado', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Dourada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Dourada e Prateada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Entalhada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Escultura', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Escultura crua', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Escultura Dourada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Escultura Monocromada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Escultura Policromada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Estampa', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Filigrama', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Fundição', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Martelada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Metal', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Modelagem', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Monocromada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Papel Fotografia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Papel Impressa', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Papel Litogravura', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Papel Manuscrito', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Papel tipografia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Dourada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura grafite aquarela sobre papel', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre madeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre madeira aplicação pedras', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre madeira folha ouro', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre madeira folha prata', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre pergaminho', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre Tecido', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre tela aplic. purpurina', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo sobre tela aplicação pedras', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Pintura Óleo tela colada madeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Policromada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Policromada Dourada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Policromada prateada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Prateada', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Talha', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Alafaia', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Alfaiataria', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Bandeira', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Bordado', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Costura a Máquina', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Costura Manual', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Flâmula', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Tecido Vestimenta', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tecnica' => 'Terracota', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); // Inserindo dados na tabela arte_tombamento DB::connection('mysql_arte_sacra')->table('tombamento')->insert([ [ 'id' => Str::uuid(), 'tombamento' => 'Não', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tombamento' => 'IPHAN', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tombamento' => 'INEPAC/RJ', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tombamento' => 'Município', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tombamento' => 'Estado', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ], [ 'id' => Str::uuid(), 'tombamento' => 'Governo Federal', 'status' => 1, 'created_at' => now(), 'updated_at' => now() ] ]); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.17 |
proxy
|
phpinfo
|
Settings