7 changed files with 458 additions and 2 deletions
-
2src/CrudMake.php
-
2src/CrudSimpleMake.php
-
4src/Generators/FormViewGenerator.php
-
4src/Generators/IndexViewGenerator.php
-
4src/Generators/ShowViewGenerator.php
-
257tests/CommandOptions/FullCrudBs3OptionsTest.php
-
187tests/CommandOptions/SimpleCrudBs3OptionsTest.php
@ -0,0 +1,257 @@ |
|||
<?php |
|||
|
|||
namespace Tests\CommandOptions; |
|||
|
|||
use Tests\TestCase; |
|||
use Illuminate\Contracts\Console\Kernel; |
|||
|
|||
class FullCrudBs3OptionsTest extends TestCase |
|||
{ |
|||
/** @test */ |
|||
public function it_can_generate_views_with_bootstrap3_for_full_crud() |
|||
{ |
|||
$this->artisan('make:crud', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$this->assertNotContains("{$this->model_name} model already exists.", app(Kernel::class)->output()); |
|||
|
|||
$this->assertFileExists(app_path($this->model_name.'.php')); |
|||
$this->assertFileExists(app_path("Http/Controllers/{$this->model_name}Controller.php")); |
|||
|
|||
$migrationFilePath = database_path('migrations/'.date('Y_m_d_His').'_create_'.$this->table_name.'_table.php'); |
|||
$this->assertFileExists($migrationFilePath); |
|||
|
|||
$this->assertFileExists(resource_path("views/{$this->table_name}/index.blade.php")); |
|||
$this->assertFileExists(resource_path("views/{$this->table_name}/create.blade.php")); |
|||
$this->assertFileExists(resource_path("views/{$this->table_name}/edit.blade.php")); |
|||
$this->assertFileNotExists(resource_path("views/{$this->table_name}/forms.blade.php")); |
|||
|
|||
$localeConfig = config('app.locale'); |
|||
$this->assertFileExists(resource_path("lang/{$localeConfig}/{$this->lang_name}.php")); |
|||
|
|||
$this->assertFileExists(base_path("routes/web.php")); |
|||
$this->assertFileExists(app_path("Policies/{$this->model_name}Policy.php")); |
|||
$this->assertFileExists(database_path("factories/{$this->model_name}Factory.php")); |
|||
$this->assertFileExists(base_path("tests/Unit/Models/{$this->model_name}Test.php")); |
|||
$this->assertFileExists(base_path("tests/Feature/Manage{$this->model_name}Test.php")); |
|||
} |
|||
|
|||
/** @test */ |
|||
public function it_creates_correct_index_view_content_with_bootstrap3() |
|||
{ |
|||
$this->artisan('make:crud', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$indexViewPath = resource_path("views/{$this->table_name}/index.blade.php"); |
|||
$this->assertFileExists($indexViewPath); |
|||
$indexViewContent = "@extends('layouts.app')
|
|||
|
|||
@section('title', __('{$this->lang_name}.list')) |
|||
|
|||
@section('content') |
|||
<h1 class=\"page-header\">
|
|||
<div class=\"pull-right\">
|
|||
@can('create', new {$this->full_model_name}) |
|||
<a href=\"{{ route('{$this->table_name}.create') }}\" class=\"btn btn-success\">{{ __('{$this->lang_name}.create') }}</a>
|
|||
@endcan |
|||
</div> |
|||
{{ __('{$this->lang_name}.list') }} |
|||
<small>{{ __('app.total') }} : {{ \${$this->collection_model_var_name}->total() }} {{ __('{$this->lang_name}.{$this->lang_name}') }}</small> |
|||
</h1> |
|||
<div class=\"row\">
|
|||
<div class=\"col-md-12\">
|
|||
<div class=\"panel panel-default table-responsive\">
|
|||
<div class=\"panel-heading\">
|
|||
<form method=\"GET\" action=\"\" accept-charset=\"UTF-8\" class=\"form-inline\">
|
|||
<div class=\"form-group \">
|
|||
<label for=\"q\" class=\"control-label\">{{ __('{$this->lang_name}.search') }}</label>
|
|||
<input placeholder=\"{{ __('{$this->lang_name}.search_text') }}\" name=\"q\" type=\"text\" id=\"q\" class=\"form-control input-sm\" value=\"{{ request('q') }}\">
|
|||
</div> |
|||
<input type=\"submit\" value=\"{{ __('{$this->lang_name}.search') }}\" class=\"btn btn-sm\">
|
|||
<a href=\"{{ route('{$this->table_name}.index') }}\">{{ __('app.reset') }}</a>
|
|||
</form> |
|||
</div> |
|||
<table class=\"table table-condensed\">
|
|||
<thead> |
|||
<tr> |
|||
<th class=\"text-center\">{{ __('app.table_no') }}</th>
|
|||
<th>{{ __('{$this->lang_name}.name') }}</th> |
|||
<th>{{ __('{$this->lang_name}.description') }}</th> |
|||
<th class=\"text-center\">{{ __('app.action') }}</th>
|
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
@foreach(\${$this->collection_model_var_name} as \$key => \${$this->single_model_var_name}) |
|||
<tr> |
|||
<td class=\"text-center\">{{ \${$this->collection_model_var_name}->firstItem() + \$key }}</td>
|
|||
<td>{!! \${$this->single_model_var_name}->name_link !!}</td> |
|||
<td>{{ \${$this->single_model_var_name}->description }}</td> |
|||
<td class=\"text-center\">
|
|||
@can('view', \${$this->single_model_var_name}) |
|||
<a href=\"{{ route('{$this->table_name}.show', \${$this->single_model_var_name}) }}\" id=\"show-{$this->lang_name}-{{ \${$this->single_model_var_name}->id }}\" class=\"btn btn-default btn-xs\">{{ __('app.show') }}</a>
|
|||
@endcan |
|||
</td> |
|||
</tr> |
|||
@endforeach |
|||
</tbody> |
|||
</table> |
|||
<div class=\"panel-body\">{{ \${$this->collection_model_var_name}->appends(Request::except('page'))->render() }}</div>
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
@endsection |
|||
";
|
|||
$this->assertEquals($indexViewContent, file_get_contents($indexViewPath)); |
|||
} |
|||
|
|||
/** @test */ |
|||
public function it_creates_correct_show_view_content_with_bootstrap3() |
|||
{ |
|||
$this->artisan('make:crud', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$showFormViewPath = resource_path("views/{$this->table_name}/show.blade.php"); |
|||
$this->assertFileExists($showFormViewPath); |
|||
|
|||
$showFormViewContent = "@extends('layouts.app')
|
|||
|
|||
@section('title', __('{$this->lang_name}.detail')) |
|||
|
|||
@section('content') |
|||
<div class=\"row\">
|
|||
<div class=\"col-md-6 col-md-offset-3\">
|
|||
<div class=\"panel panel-default\">
|
|||
<div class=\"panel-heading\"><h3 class=\"panel-title\">{{ __('{$this->lang_name}.detail') }}</h3></div>
|
|||
<table class=\"table table-condensed\">
|
|||
<tbody> |
|||
<tr><td>{{ __('{$this->lang_name}.name') }}</td><td>{{ \${$this->single_model_var_name}->name }}</td></tr> |
|||
<tr><td>{{ __('{$this->lang_name}.description') }}</td><td>{{ \${$this->single_model_var_name}->description }}</td></tr> |
|||
</tbody> |
|||
</table> |
|||
<div class=\"panel-footer\">
|
|||
@can('update', \${$this->single_model_var_name}) |
|||
<a href=\"{{ route('{$this->table_name}.edit', \${$this->single_model_var_name}) }}\" id=\"edit-{$this->lang_name}-{{ \${$this->single_model_var_name}->id }}\" class=\"btn btn-warning\">{{ __('{$this->lang_name}.edit') }}</a>
|
|||
@endcan |
|||
<a href=\"{{ route('{$this->table_name}.index') }}\" class=\"btn btn-default\">{{ __('{$this->lang_name}.back_to_index') }}</a>
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
@endsection |
|||
";
|
|||
$this->assertEquals($showFormViewContent, file_get_contents($showFormViewPath)); |
|||
} |
|||
|
|||
/** @test */ |
|||
public function it_creates_correct_create_view_content_with_bootstrap3() |
|||
{ |
|||
$this->artisan('make:crud', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$createFormViewPath = resource_path("views/{$this->table_name}/create.blade.php"); |
|||
$this->assertFileExists($createFormViewPath); |
|||
$createFormViewContent = "@extends('layouts.app')
|
|||
|
|||
@section('title', __('{$this->lang_name}.create')) |
|||
|
|||
@section('content') |
|||
<div class=\"row\">
|
|||
<div class=\"col-md-6 col-md-offset-3\">
|
|||
<div class=\"panel panel-default\">
|
|||
<div class=\"panel-heading\"><h3 class=\"panel-title\">{{ __('{$this->lang_name}.create') }}</h3></div>
|
|||
<form method=\"POST\" action=\"{{ route('{$this->table_name}.store') }}\" accept-charset=\"UTF-8\">
|
|||
{{ csrf_field() }} |
|||
<div class=\"panel-body\">
|
|||
<div class=\"form-group{{ \$errors->has('name') ? ' has-error' : '' }}\">
|
|||
<label for=\"name\" class=\"control-label\">{{ __('{$this->lang_name}.name') }}</label>
|
|||
<input id=\"name\" type=\"text\" class=\"form-control\" name=\"name\" value=\"{{ old('name') }}\" required>
|
|||
{!! \$errors->first('name', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
<div class=\"form-group{{ \$errors->has('description') ? ' has-error' : '' }}\">
|
|||
<label for=\"description\" class=\"control-label\">{{ __('{$this->lang_name}.description') }}</label>
|
|||
<textarea id=\"description\" class=\"form-control\" name=\"description\" rows=\"4\">{{ old('description') }}</textarea>
|
|||
{!! \$errors->first('description', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
</div> |
|||
<div class=\"panel-footer\">
|
|||
<input type=\"submit\" value=\"{{ __('{$this->lang_name}.create') }}\" class=\"btn btn-success\">
|
|||
<a href=\"{{ route('{$this->table_name}.index') }}\" class=\"btn btn-default\">{{ __('app.cancel') }}</a>
|
|||
</div> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
@endsection |
|||
";
|
|||
$this->assertEquals($createFormViewContent, file_get_contents($createFormViewPath)); |
|||
} |
|||
|
|||
/** @test */ |
|||
public function it_creates_correct_edit_view_content_with_bootstrap3() |
|||
{ |
|||
$this->artisan('make:crud', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$editFormViewPath = resource_path("views/{$this->table_name}/edit.blade.php"); |
|||
$this->assertFileExists($editFormViewPath); |
|||
$editFormViewContent = "@extends('layouts.app')
|
|||
|
|||
@section('title', __('{$this->lang_name}.edit')) |
|||
|
|||
@section('content') |
|||
<div class=\"row\">
|
|||
<div class=\"col-md-6 col-md-offset-3\">
|
|||
@if (request('action') == 'delete' && \${$this->single_model_var_name}) |
|||
@can('delete', \${$this->single_model_var_name}) |
|||
<div class=\"panel panel-default\">
|
|||
<div class=\"panel-heading\"><h3 class=\"panel-title\">{{ __('{$this->lang_name}.delete') }}</h3></div>
|
|||
<div class=\"panel-body\">
|
|||
<label class=\"control-label\">{{ __('{$this->lang_name}.name') }}</label>
|
|||
<p>{{ \${$this->single_model_var_name}->name }}</p> |
|||
<label class=\"control-label\">{{ __('{$this->lang_name}.description') }}</label>
|
|||
<p>{{ \${$this->single_model_var_name}->description }}</p> |
|||
{!! \$errors->first('{$this->lang_name}_id', '<span class=\"form-error small\">:message</span>') !!} |
|||
</div> |
|||
<hr style=\"margin:0\">
|
|||
<div class=\"panel-body\">{{ __('{$this->lang_name}.delete_confirm') }}</div>
|
|||
<div class=\"panel-footer\">
|
|||
<form method=\"POST\" action=\"{{ route('{$this->table_name}.destroy', \${$this->single_model_var_name}) }}\" accept-charset=\"UTF-8\" onsubmit=\"return confirm("Are you sure to delete this?")\" class=\"del-form pull-right\" style=\"display: inline;\">
|
|||
{{ csrf_field() }} {{ method_field('delete') }} |
|||
<input name=\"{$this->lang_name}_id\" type=\"hidden\" value=\"{{ \${$this->single_model_var_name}->id }}\">
|
|||
<input name=\"{{ request('page') }}\" type=\"hidden\">
|
|||
<input name=\"{{ request('q') }}\" type=\"hidden\">
|
|||
<button title=\"Delete this item\" type=\"submit\" class=\"btn btn-danger\">{{ __('app.delete_confirm_button') }}</button>
|
|||
</form> |
|||
<a href=\"{{ route('{$this->table_name}.edit', \${$this->single_model_var_name}) }}\" class=\"btn btn-default\">{{ __('app.cancel') }}</a>
|
|||
</div> |
|||
</div> |
|||
@endcan |
|||
@else |
|||
<div class=\"panel panel-default\">
|
|||
<div class=\"panel-heading\"><h3 class=\"panel-title\">{{ __('{$this->lang_name}.edit') }}</h3></div>
|
|||
<form method=\"POST\" action=\"{{ route('{$this->table_name}.update', \${$this->single_model_var_name}) }}\" accept-charset=\"UTF-8\">
|
|||
{{ csrf_field() }} {{ method_field('patch') }} |
|||
<div class=\"panel-body\">
|
|||
<div class=\"form-group{{ \$errors->has('name') ? ' has-error' : '' }}\">
|
|||
<label for=\"name\" class=\"control-label\">{{ __('{$this->lang_name}.name') }}</label>
|
|||
<input id=\"name\" type=\"text\" class=\"form-control\" name=\"name\" value=\"{{ old('name', \${$this->single_model_var_name}->name) }}\" required>
|
|||
{!! \$errors->first('name', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
<div class=\"form-group{{ \$errors->has('description') ? ' has-error' : '' }}\">
|
|||
<label for=\"description\" class=\"control-label\">{{ __('{$this->lang_name}.description') }}</label>
|
|||
<textarea id=\"description\" class=\"form-control\" name=\"description\" rows=\"4\">{{ old('description', \${$this->single_model_var_name}->description) }}</textarea>
|
|||
{!! \$errors->first('description', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
</div> |
|||
<div class=\"panel-footer\">
|
|||
<input type=\"submit\" value=\"{{ __('{$this->lang_name}.update') }}\" class=\"btn btn-success\">
|
|||
<a href=\"{{ route('{$this->table_name}.show', \${$this->single_model_var_name}) }}\" class=\"btn btn-default\">{{ __('app.cancel') }}</a>
|
|||
@can('delete', \${$this->single_model_var_name}) |
|||
<a href=\"{{ route('{$this->table_name}.edit', [\${$this->single_model_var_name}, 'action' => 'delete']) }}\" id=\"del-{$this->lang_name}-{{ \${$this->single_model_var_name}->id }}\" class=\"btn btn-danger pull-right\">{{ __('app.delete') }}</a>
|
|||
@endcan |
|||
</div> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
@endif |
|||
@endsection |
|||
";
|
|||
$this->assertEquals($editFormViewContent, file_get_contents($editFormViewPath)); |
|||
} |
|||
} |
|||
@ -0,0 +1,187 @@ |
|||
<?php |
|||
|
|||
namespace Tests\CommandOptions; |
|||
|
|||
use Tests\TestCase; |
|||
use Illuminate\Contracts\Console\Kernel; |
|||
|
|||
class SimpleCrudBs3OptionsTest extends TestCase |
|||
{ |
|||
/** @test */ |
|||
public function it_can_generate_views_with_bootstrap3_for_simple_crud() |
|||
{ |
|||
$this->artisan('make:crud-simple', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$this->assertNotContains("{$this->model_name} model already exists.", app(Kernel::class)->output()); |
|||
|
|||
$this->assertFileExists(app_path($this->model_name.'.php')); |
|||
$this->assertFileExists(app_path("Http/Controllers/{$this->model_name}Controller.php")); |
|||
|
|||
$migrationFilePath = database_path('migrations/'.date('Y_m_d_His').'_create_'.$this->table_name.'_table.php'); |
|||
$this->assertFileExists($migrationFilePath); |
|||
|
|||
$this->assertFileExists(resource_path("views/{$this->table_name}/index.blade.php")); |
|||
$this->assertFileExists(resource_path("views/{$this->table_name}/forms.blade.php")); |
|||
|
|||
$localeConfig = config('app.locale'); |
|||
$this->assertFileExists(resource_path("lang/{$localeConfig}/{$this->lang_name}.php")); |
|||
|
|||
$this->assertFileExists(base_path("routes/web.php")); |
|||
$this->assertFileExists(app_path("Policies/{$this->model_name}Policy.php")); |
|||
$this->assertFileExists(database_path("factories/{$this->model_name}Factory.php")); |
|||
$this->assertFileExists(base_path("tests/Unit/Models/{$this->model_name}Test.php")); |
|||
$this->assertFileExists(base_path("tests/Feature/Manage{$this->model_name}Test.php")); |
|||
} |
|||
|
|||
/** @test */ |
|||
public function it_creates_correct_index_view_content_with_bootstrap3() |
|||
{ |
|||
$this->artisan('make:crud-simple', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$indexViewPath = resource_path("views/{$this->table_name}/index.blade.php"); |
|||
$this->assertFileExists($indexViewPath); |
|||
$indexViewContent = "@extends('layouts.app')
|
|||
|
|||
@section('title', __('{$this->lang_name}.list')) |
|||
|
|||
@section('content') |
|||
<h1 class=\"page-header\">
|
|||
<div class=\"pull-right\">
|
|||
@can('create', new {$this->full_model_name}) |
|||
<a href=\"{{ route('{$this->table_name}.index', ['action' => 'create']) }}\" class=\"btn btn-success\">{{ __('{$this->lang_name}.create') }}</a>
|
|||
@endcan |
|||
</div> |
|||
{{ __('{$this->lang_name}.list') }} |
|||
<small>{{ __('app.total') }} : {{ \${$this->collection_model_var_name}->total() }} {{ __('{$this->lang_name}.{$this->lang_name}') }}</small> |
|||
</h1> |
|||
<div class=\"row\">
|
|||
<div class=\"col-md-8\">
|
|||
<div class=\"panel panel-default table-responsive\">
|
|||
<div class=\"panel-heading\">
|
|||
<form method=\"GET\" action=\"\" accept-charset=\"UTF-8\" class=\"form-inline\">
|
|||
<div class=\"form-group\">
|
|||
<label for=\"q\" class=\"control-label\">{{ __('{$this->lang_name}.search') }}</label>
|
|||
<input placeholder=\"{{ __('{$this->lang_name}.search_text') }}\" name=\"q\" type=\"text\" id=\"q\" class=\"form-control input-sm\" value=\"{{ request('q') }}\">
|
|||
</div> |
|||
<input type=\"submit\" value=\"{{ __('{$this->lang_name}.search') }}\" class=\"btn btn-sm\">
|
|||
<a href=\"{{ route('{$this->table_name}.index') }}\">{{ __('app.reset') }}</a>
|
|||
</form> |
|||
</div> |
|||
<table class=\"table table-condensed\">
|
|||
<thead> |
|||
<tr> |
|||
<th class=\"text-center\">{{ __('app.table_no') }}</th>
|
|||
<th>{{ __('{$this->lang_name}.name') }}</th> |
|||
<th>{{ __('{$this->lang_name}.description') }}</th> |
|||
<th class=\"text-center\">{{ __('app.action') }}</th>
|
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
@foreach(\${$this->collection_model_var_name} as \$key => \${$this->single_model_var_name}) |
|||
<tr> |
|||
<td class=\"text-center\">{{ \${$this->collection_model_var_name}->firstItem() + \$key }}</td>
|
|||
<td>{{ \${$this->single_model_var_name}->name }}</td> |
|||
<td>{{ \${$this->single_model_var_name}->description }}</td> |
|||
<td class=\"text-center\">
|
|||
@can('update', \${$this->single_model_var_name}) |
|||
<a href=\"{{ route('{$this->table_name}.index', ['action' => 'edit', 'id' => \${$this->single_model_var_name}->id] + Request::only('page', 'q')) }}\" id=\"edit-{$this->lang_name}-{{ \${$this->single_model_var_name}->id }}\">{{ __('app.edit') }}</a>
|
|||
@endcan |
|||
</td> |
|||
</tr> |
|||
@endforeach |
|||
</tbody> |
|||
</table> |
|||
<div class=\"panel-body\">{{ \${$this->collection_model_var_name}->appends(Request::except('page'))->render() }}</div>
|
|||
</div> |
|||
</div> |
|||
<div class=\"col-md-4\">
|
|||
@if(Request::has('action')) |
|||
@include('{$this->table_name}.forms') |
|||
@endif |
|||
</div> |
|||
</div> |
|||
@endsection |
|||
";
|
|||
$this->assertEquals($indexViewContent, file_get_contents($indexViewPath)); |
|||
} |
|||
|
|||
/** @test */ |
|||
public function it_creates_correct_forms_view_content_with_bootstrap3() |
|||
{ |
|||
$this->artisan('make:crud-simple', ['name' => $this->model_name, '--bs3' => true]); |
|||
|
|||
$formViewPath = resource_path("views/{$this->table_name}/forms.blade.php"); |
|||
$this->assertFileExists($formViewPath); |
|||
$formViewContent = "@if (Request::get('action') == 'create')
|
|||
@can('create', new {$this->full_model_name}) |
|||
<form method=\"POST\" action=\"{{ route('{$this->table_name}.store') }}\" accept-charset=\"UTF-8\">
|
|||
{{ csrf_field() }} |
|||
<div class=\"form-group{{ \$errors->has('name') ? ' has-error' : '' }}\">
|
|||
<label for=\"name\" class=\"control-label\">{{ __('{$this->lang_name}.name') }}</label>
|
|||
<input id=\"name\" type=\"text\" class=\"form-control\" name=\"name\" value=\"{{ old('name') }}\" required>
|
|||
{!! \$errors->first('name', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
<div class=\"form-group{{ \$errors->has('description') ? ' has-error' : '' }}\">
|
|||
<label for=\"description\" class=\"control-label\">{{ __('{$this->lang_name}.description') }}</label>
|
|||
<textarea id=\"description\" class=\"form-control\" name=\"description\" rows=\"4\">{{ old('description') }}</textarea>
|
|||
{!! \$errors->first('description', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
<input type=\"submit\" value=\"{{ __('{$this->lang_name}.create') }}\" class=\"btn btn-success\">
|
|||
<a href=\"{{ route('{$this->table_name}.index') }}\" class=\"btn btn-default\">{{ __('app.cancel') }}</a>
|
|||
</form> |
|||
@endcan |
|||
@endif |
|||
@if (Request::get('action') == 'edit' && \$editable{$this->model_name}) |
|||
@can('update', \$editable{$this->model_name}) |
|||
<form method=\"POST\" action=\"{{ route('{$this->table_name}.update', \$editable{$this->model_name}) }}\" accept-charset=\"UTF-8\">
|
|||
{{ csrf_field() }} {{ method_field('patch') }} |
|||
<div class=\"form-group{{ \$errors->has('name') ? ' has-error' : '' }}\">
|
|||
<label for=\"name\" class=\"control-label\">{{ __('{$this->lang_name}.name') }}</label>
|
|||
<input id=\"name\" type=\"text\" class=\"form-control\" name=\"name\" value=\"{{ old('name', \$editable{$this->model_name}->name) }}\" required>
|
|||
{!! \$errors->first('name', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
<div class=\"form-group{{ \$errors->has('description') ? ' has-error' : '' }}\">
|
|||
<label for=\"description\" class=\"control-label\">{{ __('{$this->lang_name}.description') }}</label>
|
|||
<textarea id=\"description\" class=\"form-control\" name=\"description\" rows=\"4\">{{ old('description', \$editable{$this->model_name}->description) }}</textarea>
|
|||
{!! \$errors->first('description', '<span class=\"help-block small\">:message</span>') !!} |
|||
</div> |
|||
<input name=\"page\" value=\"{{ request('page') }}\" type=\"hidden\">
|
|||
<input name=\"q\" value=\"{{ request('q') }}\" type=\"hidden\">
|
|||
<input type=\"submit\" value=\"{{ __('{$this->lang_name}.update') }}\" class=\"btn btn-success\">
|
|||
<a href=\"{{ route('{$this->table_name}.index', Request::only('q', 'page')) }}\" class=\"btn btn-default\">{{ __('app.cancel') }}</a>
|
|||
@can('delete', \$editable{$this->model_name}) |
|||
<a href=\"{{ route('{$this->table_name}.index', ['action' => 'delete', 'id' => \$editable{$this->model_name}->id] + Request::only('page', 'q')) }}\" id=\"del-{$this->lang_name}-{{ \$editable{$this->model_name}->id }}\" class=\"btn btn-danger pull-right\">{{ __('app.delete') }}</a>
|
|||
@endcan |
|||
</form> |
|||
@endcan |
|||
@endif |
|||
@if (Request::get('action') == 'delete' && \$editable{$this->model_name}) |
|||
@can('delete', \$editable{$this->model_name}) |
|||
<div class=\"panel panel-default\">
|
|||
<div class=\"panel-heading\"><h3 class=\"panel-title\">{{ __('{$this->lang_name}.delete') }}</h3></div>
|
|||
<div class=\"panel-body\">
|
|||
<label class=\"control-label\">{{ __('{$this->lang_name}.name') }}</label>
|
|||
<p>{{ \$editable{$this->model_name}->name }}</p> |
|||
<label class=\"control-label\">{{ __('{$this->lang_name}.description') }}</label>
|
|||
<p>{{ \$editable{$this->model_name}->description }}</p> |
|||
{!! \$errors->first('{$this->lang_name}_id', '<span class=\"form-error small\">:message</span>') !!} |
|||
</div> |
|||
<hr style=\"margin:0\">
|
|||
<div class=\"panel-body\">{{ __('{$this->lang_name}.delete_confirm') }}</div>
|
|||
<div class=\"panel-footer\">
|
|||
<form method=\"POST\" action=\"{{ route('{$this->table_name}.destroy', \$editable{$this->model_name}) }}\" accept-charset=\"UTF-8\" onsubmit=\"return confirm("Are you sure to delete this?")\" class=\"del-form pull-right\" style=\"display: inline;\">
|
|||
{{ csrf_field() }} {{ method_field('delete') }} |
|||
<input name=\"{$this->lang_name}_id\" type=\"hidden\" value=\"{{ \$editable{$this->model_name}->id }}\">
|
|||
<input name=\"page\" value=\"{{ request('page') }}\" type=\"hidden\">
|
|||
<input name=\"q\" value=\"{{ request('q') }}\" type=\"hidden\">
|
|||
<button title=\"Delete this item\" type=\"submit\" class=\"btn btn-danger\">{{ __('app.delete_confirm_button') }}</button>
|
|||
</form> |
|||
<a href=\"{{ route('{$this->table_name}.index', Request::only('q', 'page')) }}\" class=\"btn btn-default\">{{ __('app.cancel') }}</a>
|
|||
</div> |
|||
</div> |
|||
@endcan |
|||
@endif |
|||
";
|
|||
$this->assertEquals($formViewContent, file_get_contents($formViewPath)); |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue