🏊🏊♂️🏊♀️
NS’App v1.0
-- Upload de Fichiers Gestion des Médias
Upload de Fichiers
Créer la Migration pour les fichiers
php artisan make:migration create_files_table
Définir le schéma de la table
Schema::create('files', function (Blueprint $table) {
$table->id();
$table->string('filename');
$table->string('path');
$table->timestamps();
});
php artisan migrate