Skip to content

Commit ffed279

Browse files
author
Matt Campbell
committed
Template: Remove extra spacing when generating properties
Fixes #12
1 parent c81d5f5 commit ffed279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/factory.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$factory->define({{$reflection->getName()}}::class, function (Faker\Generator $faker) {
33
return [
44
@foreach($properties as $name => $property)
5-
'{{$name}}' => @if($property['faker']) {!!$property['type']!!} @else '{{$property['type']}}' @endif,
5+
'{{$name}}' => @if($property['faker']){!!$property['type']!!}@else'{{$property['type']}}'@endif,
66
@endforeach
77
];
88
});

0 commit comments

Comments
 (0)