up
This commit is contained in:
@@ -59,7 +59,9 @@ class ProductoResource extends Resource
|
|||||||
->image()
|
->image()
|
||||||
->directory(directory: 'productos')
|
->directory(directory: 'productos')
|
||||||
->maxSize(10240)
|
->maxSize(10240)
|
||||||
->acceptedFileTypes(['image/jpeg', 'image/png', 'image/gif', 'image/webp']),
|
->acceptedFileTypes(['image/jpeg', 'image/png', 'image/gif', 'image/webp'])
|
||||||
|
->nullable()
|
||||||
|
->helperText('Opcional'),
|
||||||
Forms\Components\Textarea::make('descripcion')
|
Forms\Components\Textarea::make('descripcion')
|
||||||
->columnSpanFull()
|
->columnSpanFull()
|
||||||
->required()
|
->required()
|
||||||
|
|||||||
@@ -43,6 +43,13 @@ class Producto extends Model
|
|||||||
'estado' => 'boolean',
|
'estado' => 'boolean',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Valores por defecto para atributos del modelo
|
||||||
|
*/
|
||||||
|
protected $attributes = [
|
||||||
|
'imagen' => '',
|
||||||
|
];
|
||||||
|
|
||||||
public function variants(): HasMany
|
public function variants(): HasMany
|
||||||
{
|
{
|
||||||
return $this->hasMany(ProductVariant::class);
|
return $this->hasMany(ProductVariant::class);
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* NOTE: Changing column attributes requires the "doctrine/dbal" package.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::table('productos', function (Blueprint $table) {
|
||||||
|
$table->string('imagen')->nullable()->default('')->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::table('productos', function (Blueprint $table) {
|
||||||
|
$table->string('imagen')->nullable(false)->default(null)->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user