Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
soufiene-slimi committed Jun 5, 2020
1 parent dbae872 commit 3e88c52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Laravel From Template
# Laravel Form Template

[![Latest Version on Packagist](https://img.shields.io/packagist/v/soufiene-slimi/laravel-form-template.svg)](https://packagist.org/packages/soufiene-slimi/laravel-form-template)
[![Quality Score](https://img.shields.io/scrutinizer/g/soufiene-slimi/laravel-form-template.svg)](https://scrutinizer-ci.com/g/soufiene-slimi/laravel-form-template)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateFromTemplatesTable extends Migration
class CreateFormTemplatesTable extends Migration
{
/**
* Run the migrations.
Expand All @@ -13,7 +13,7 @@ class CreateFromTemplatesTable extends Migration
*/
public function up()
{
Schema::create('from_templates', function (Blueprint $table) {
Schema::create('form_templates', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('model_fqn')->nullable();
Expand All @@ -29,6 +29,6 @@ public function up()
*/
public function down()
{
Schema::dropIfExists('from_templates');
Schema::dropIfExists('form_templates');
}
}
2 changes: 1 addition & 1 deletion src/Models/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Template extends Model
{
protected $guarded = ['id'];
protected $table = 'from_templates';
protected $table = 'form_templates';

/**
* Apply a template
Expand Down

0 comments on commit 3e88c52

Please sign in to comment.