Skip to content

Commit 0e55476

Browse files
committed
2 parents d005153 + 8ae4191 commit 0e55476

File tree

67 files changed

+522
-757
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+522
-757
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ public/css
2626
public/js
2727
composer.lock
2828
public/img/backend/blog_images/*
29-
29+
public/mix-manifest.json

app/Console/Commands/ModuleGenerator.php

Lines changed: 0 additions & 238 deletions
This file was deleted.

app/Console/Kernel.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class Kernel extends ConsoleKernel
1313
* @var array
1414
*/
1515
protected $commands = [
16-
'App\Console\Commands\ModuleGenerator',
1716
];
1817

1918
/**

app/Events/Backend/BlogCategories/BlogCategoryCreated.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ class BlogCategoryCreated
1414
/**
1515
* @var
1616
*/
17-
public $blogcategories;
17+
public $blogcategory;
1818

1919
/**
20-
* @param $blogcategories
20+
* @param $blogcategory
2121
*/
22-
public function __construct($blogcategories)
22+
public function __construct($blogcategory)
2323
{
24-
$this->blogcategories = $blogcategories;
24+
$this->blogcategory = $blogcategory;
2525
}
2626
}

app/Events/Backend/BlogCategories/BlogCategoryDeleted.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ class BlogCategoryDeleted
1414
/**
1515
* @var
1616
*/
17-
public $blogcategories;
17+
public $blogcategory;
1818

1919
/**
20-
* @param $blogcategories
20+
* @param $blogcategory
2121
*/
22-
public function __construct($blogcategories)
22+
public function __construct($blogcategory)
2323
{
24-
$this->blogcategories = $blogcategories;
24+
$this->blogcategory = $blogcategory;
2525
}
2626
}

app/Events/Backend/BlogCategories/BlogCategoryUpdated.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ class BlogCategoryUpdated
1414
/**
1515
* @var
1616
*/
17-
public $blogcategories;
17+
public $blogcategory;
1818

1919
/**
20-
* @param $blogcategories
20+
* @param $blogcategory
2121
*/
22-
public function __construct($blogcategories)
22+
public function __construct($blogcategory)
2323
{
24-
$this->blogcategories = $blogcategories;
24+
$this->blogcategory = $blogcategory;
2525
}
2626
}

app/Events/Backend/BlogTags/BlogTagCreated.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ class BlogTagCreated
1414
/**
1515
* @var
1616
*/
17-
public $blogtags;
17+
public $blogtag;
1818

1919
/**
20-
* @param $blogtags
20+
* @param $blogtag
2121
*/
22-
public function __construct($blogtags)
22+
public function __construct($blogtag)
2323
{
24-
$this->blogtags = $blogtags;
24+
$this->blogtag = $blogtag;
2525
}
2626
}

app/Events/Backend/BlogTags/BlogTagDeleted.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ class BlogTagDeleted
1414
/**
1515
* @var
1616
*/
17-
public $blogtags;
17+
public $blogtag;
1818

1919
/**
20-
* @param $blogtags
20+
* @param $blogtag
2121
*/
22-
public function __construct($blogtags)
22+
public function __construct($blogtag)
2323
{
24-
$this->blogtags = $blogtags;
24+
$this->blogtag = $blogtag;
2525
}
2626
}

app/Events/Backend/BlogTags/BlogTagUpdated.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ class BlogTagUpdated
1414
/**
1515
* @var
1616
*/
17-
public $blogtags;
17+
public $blogtag;
1818

1919
/**
20-
* @param $blogtags
20+
* @param $blogtag
2121
*/
22-
public function __construct($blogtags)
22+
public function __construct($blogtag)
2323
{
24-
$this->blogtags = $blogtags;
24+
$this->blogtag = $blogtag;
2525
}
2626
}

0 commit comments

Comments
 (0)