Skip to content

Commit

Permalink
Database Install Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Lesko committed Mar 27, 2019
1 parent 9288e26 commit a1a62a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class OPCreateTables extends Migration
class CreateOpenPoliceTables extends Migration
{
/**
* Run the migrations.
Expand Down
2 changes: 1 addition & 1 deletion src/Database/OpenPoliceSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;

class OPSeeder extends Seeder
class OpenPoliceSeeder extends Seeder
{
/**
* Run the database seeds.
Expand Down
1 change: 1 addition & 0 deletions src/OpenPoliceServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class OpenPoliceServiceProvider extends ServiceProvider
public function boot()
{
require __DIR__ . '/routes.php';
$this->loadViewsFrom(__DIR__.'/Views', 'openpolice');
$this->publishes([
__DIR__.'/Views' => base_path('resources/views/vendor/openpolice'),
__DIR__.'/Public' => base_path('public/openpolice'),
Expand Down

0 comments on commit a1a62a7

Please sign in to comment.