Models refactor + Basic functionnalities
Some checks failed
linter / quality (push) Failing after 3m25s
tests / ci (push) Failing after 12m2s

This commit is contained in:
2025-08-26 12:12:02 +02:00
parent 715d2a884a
commit 55a52086c1
49 changed files with 1074 additions and 269 deletions

View File

@@ -1,66 +0,0 @@
<?php
namespace App\Http\Controllers;
use App\Http\Requests\StoreResumeComponentRequest;
use App\Http\Requests\UpdateResumeComponentRequest;
use App\Models\ResumeComponent;
class ResumeComponentController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreResumeComponentRequest $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(ResumeComponent $resumeComponent)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(ResumeComponent $resumeComponent)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateResumeComponentRequest $request, ResumeComponent $resumeComponent)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(ResumeComponent $resumeComponent)
{
//
}
}