New Initial Commit

This commit is contained in:
twotalesanimation
2025-12-09 12:04:54 +02:00
commit 6de01c13c5
350 changed files with 42032 additions and 0 deletions
@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\Product;
class FabricsController extends Controller
{
public function index()
{
$fabrics = Product::take(6)->get();
return view('fabrics', [
'fabrics' => $fabrics
]);
}
}