Browse Source

Marcas crear editar

main
Damian 1 month ago
parent
commit
2bd0c159fc
  1. 73
      app/Http/Controllers/MarcaController.php
  2. 15
      app/Models/Marca.php
  3. 23
      database/factories/MarcaFactory.php
  4. 28
      database/migrations/2025_02_28_192615_create_marcas_table.php
  5. 17
      database/seeders/MarcaSeeder.php
  6. 2
      resources/views/layouts/dashboard.blade.php
  7. 46
      resources/views/marcas.blade.php
  8. 31
      resources/views/marcasCrearEditar.blade.php
  9. 5
      routes/web.php

73
app/Http/Controllers/MarcaController.php

@ -0,0 +1,73 @@
<?php
namespace App\Http\Controllers;
use App\Models\Marca;
use Illuminate\Http\Request;
class MarcaController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
$marcas = Marca::all();
return view('marcas', ["marcas" => $marcas]);
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
$marcas = Marca::all();
return view('marcasCrearEditar',['marcas'=>$marcas]);
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
$marca = new Marca($request->all());
$marca->save();
return redirect()->route('marca.index');
}
/**
* Display the specified resource.
*/
public function show(Marca $marca)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
$marca = Marca::find($id);
return view('marcasCrearEditar',['marca'=>$marca]);
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $id)
{
$marca = Marca::find($id);
$marca->fill($request->all());
$marca->save();
return redirect()->route('marca.index');
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Marca $marca)
{
//
}
}

15
app/Models/Marca.php

@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Marca extends Model
{
use HasFactory;
protected $table = 'marcas';
protected $fillable = ['nombre'];
}

23
database/factories/MarcaFactory.php

@ -0,0 +1,23 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Marca>
*/
class MarcaFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
//
];
}
}

28
database/migrations/2025_02_28_192615_create_marcas_table.php

@ -0,0 +1,28 @@
<?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('marcas', function (Blueprint $table) {
$table->id();
$table->string('nombre');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('marcas');
}
};

17
database/seeders/MarcaSeeder.php

@ -0,0 +1,17 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class MarcaSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
//
}
}

2
resources/views/layouts/dashboard.blade.php

@ -29,7 +29,7 @@
<!-- Vehículos -->
<li>
<a href="/marcas" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700">
<a href="{{ route('marca.index') }}" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700">
<i class="fas fa-car"></i>
<span>Marcas</span>
</a>

46
resources/views/marcas.blade.php

@ -0,0 +1,46 @@
@extends('layouts.dashboard')
@section('content')
<div class="row">
<div class="col-md-12">
<a href="{{ route('marca.create') }}" class="btn btn-primary">Agregar Marca</a>
</div>
<div class="card">
<div class="card-header">
<h3 class="card-title">Lista de Marcas</h3>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
@foreach($marcas as $marca)
<tr>
<td>{{ $marca->id }}</td>
<td>{{ $marca->nombre }}</td>
<td>
<a href="{{ route('marca.edit', $marca->id) }}" class="btn btn-primary btn-sm">Editar</a>
<form action="{{ route('marca.destroy', $marca->id) }}" method="POST" style="display:inline-block;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Eliminar</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
@endsection

31
resources/views/marcasCrearEditar.blade.php

@ -0,0 +1,31 @@
@extends('layouts.dashboard')
@section('content')
<div class="row">
<div class="col-md-12">
@if($marca)
<h1>Editar Marca</h1>
@else
<h1>Crear Marca</h1>
@endif
</div>
<div class="col-md-12">
@if($marca)
<form action="{{ route('marca.update', $marca->id) }}" method="POST">
@csrf
@method('PUT')
@else
<form action="{{ route('marca.store') }}" method="POST">
@csrf
@endif
<div class="form-group">
<label for="nombre">Nombre</label>
<input type="text" class="form-control" id="nombre" name="nombre" required value="{{ $marca->nombre }}">
</div>
<button type="submit" class="btn btn-primary">Aceptar</button>
<a href="{{ route('marca.index') }}" class="btn btn-danger">Cancelar</a>
</form>
</div>
</div>
@endsection

5
routes/web.php

@ -3,7 +3,7 @@
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\usuariosController;
use App\Http\Controllers\HomeController;
use App\Http\Controllers\MarcaController;
/*
|--------------------------------------------------------------------------
| Web Routes
@ -21,6 +21,9 @@ Route::get('/', function () {
Auth::routes(['register'=>true,'reset'=>true]);
Route::resource('marca', MarcaController::class);
// Rutas protegidas que requieren autenticación
Route::middleware(['auth'])->group(function () {
Route::get('/dashboard', [HomeController::class, 'index'])->name('dashboard');

Loading…
Cancel
Save