Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Williamug committed Apr 18, 2024
1 parent 9bf1031 commit cff17e8
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/skeleton.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

// config for VendorName/Skeleton
return [

];
19 changes: 19 additions & 0 deletions database/factories/ModelFactory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

namespace VendorName\Skeleton\Database\Factories;

use Illuminate\Database\Eloquent\Factories\Factory;

/*
class ModelFactory extends Factory
{
protected $model = YourModel::class;
public function definition()
{
return [
];
}
}
*/
19 changes: 19 additions & 0 deletions database/migrations/create_skeleton_table.php.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
public function up()
{
Schema::create('migration_table_name_table', function (Blueprint $table) {
$table->id();

// add fields

$table->timestamps();
});
}
};
Empty file added resources/views/.gitkeep
Empty file.

0 comments on commit cff17e8

Please sign in to comment.