Browse Source
ya quedo todo bien habia muchas correciones pero ya quedaron ahora necesito solo la paginaciones de las tablasmain
10 changed files with 135 additions and 35 deletions
@ -0,0 +1,11 @@ |
|||||
|
<?php |
||||
|
|
||||
|
namespace App\Models; |
||||
|
|
||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
|
use Illuminate\Database\Eloquent\Model; |
||||
|
|
||||
|
class puesto extends Model |
||||
|
{ |
||||
|
use HasFactory; |
||||
|
} |
@ -0,0 +1,32 @@ |
|||||
|
<?php |
||||
|
|
||||
|
use Illuminate\Database\Migrations\Migration; |
||||
|
use Illuminate\Database\Schema\Blueprint; |
||||
|
use Illuminate\Support\Facades\Schema; |
||||
|
|
||||
|
return new class extends Migration |
||||
|
{ |
||||
|
/** |
||||
|
* Run the migrations. |
||||
|
*/ |
||||
|
public function up(): void |
||||
|
{ |
||||
|
Schema::create('puestos', function (Blueprint $table) { |
||||
|
$table->id(); |
||||
|
$table->string('nombre'); |
||||
|
$table->timestamps(); |
||||
|
}); |
||||
|
DB::table('puestos')->insert(['nombre'=> 'Administrativo']); |
||||
|
DB::table('puestos')->insert(['nombre'=> 'docente']); |
||||
|
DB::table('puestos')->insert(['nombre'=> 'coordinador']); |
||||
|
DB::table('puestos')->insert(['nombre'=> 'personal general']); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* Reverse the migrations. |
||||
|
*/ |
||||
|
public function down(): void |
||||
|
{ |
||||
|
Schema::dropIfExists('puestos'); |
||||
|
} |
||||
|
}; |
Loading…
Reference in new issue