This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bg-gray-100 py-10"> | |
<h2 class="text-2xl md:text-4xl text-gray-600 text-center font-extrabold my-5">Buscar y Filtrar Vacantes</h2> | |
<div class="max-w-7xl mx-auto"> | |
<form> | |
<div class="md:grid md:grid-cols-3 gap-5"> | |
<div class="mb-5"> | |
<label | |
class="block mb-1 text-sm text-gray-700 uppercase font-bold " | |
for="termino">Término de Búsqueda |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<x-app-layout> | |
<div class="py-16 bg-gray-50 overflow-hidden lg:py-24"> | |
<div class=" max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-7xl"> | |
<div class="relative"> | |
<h2 class="text-center text-4xl leading-8 font-extrabold tracking-tight text-indigo-600 sm:text-6xl">Encuentra un trabajo en Tech de forma remota</h2> | |
<p class="mt-4 max-w-3xl mx-auto text-center text-xl text-gray-500">Encuentra el trabajo de tus sueños en una empresa internacional; tenemos vacantes para front end developer, backend, devops, mobile y mucho más!</p> | |
</div> | |
</div> | |
</div> | |
</x-app-layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Database\Seeders; | |
use Illuminate\Database\Console\Seeds\WithoutModelEvents; | |
use Illuminate\Database\Seeder; | |
use Illuminate\Support\Facades\DB; | |
class CategoriasSeeder extends Seeder | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Database\Seeders; | |
use Illuminate\Database\Seeder; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Database\Console\Seeds\WithoutModelEvents; | |
class SalarioSeeder extends Seeder | |
{ |