-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71c1d9d
commit f78dbba
Showing
52 changed files
with
214 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...r/_includes/timeline-pagination.blade.php → ...r/_includes/timeline-pagination.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<li> | ||
<div class="timeline-item"> | ||
<div class="timeline-body text-center"> | ||
{!! $entries->render('foundation::_partials.pagination.small') !!} | ||
{!! $entries->render('foundation::admin_partials.pagination.small') !!} | ||
</div> | ||
</div> | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/Http/Controllers/Controller.php → src/Http/Controllers/Admin/Controller.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers; | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin; | ||
|
||
use Arcanesoft\Core\Bases\FoundationController; | ||
|
||
/** | ||
* Class Controller | ||
* | ||
* @package Arcanesoft\Foundation\Http\Controllers | ||
* @package Arcanesoft\Foundation\Http\Controllers\Admin | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
abstract class Controller extends FoundationController | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers; | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin; | ||
|
||
/** | ||
* Class DashboardController | ||
* | ||
* @package Arcanesoft\Foundation\Http\Controllers | ||
* @package Arcanesoft\Foundation\Http\Controllers\Admin | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class DashboardController extends Controller | ||
|
@@ -20,10 +20,9 @@ class DashboardController extends Controller | |
public function index() | ||
{ | ||
$this->setCurrentPage('foundation-home'); | ||
$title = 'Dashboard'; | ||
$this->setTitle($title); | ||
$this->setTitle($title = 'Dashboard'); | ||
$this->addBreadcrumb($title); | ||
|
||
return $this->view('dashboard'); | ||
return $this->view('admin.dashboard'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers; | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin; | ||
|
||
use Arcanesoft\Core\Traits\Notifyable; | ||
|
||
/** | ||
* Class SettingsController | ||
* | ||
* @package Arcanesoft\Foundation\Http\Controllers | ||
* @package Arcanesoft\Foundation\Http\Controllers\Admin | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class SettingsController extends Controller | ||
|
@@ -28,7 +28,7 @@ public function __construct() | |
parent::__construct(); | ||
|
||
$this->setCurrentPage('foundation-settings'); | ||
$this->addBreadcrumbRoute('Settings', 'foundation::settings.index'); | ||
$this->addBreadcrumbRoute('Settings', 'admin::foundation.settings.index'); | ||
} | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
|
@@ -38,10 +38,10 @@ public function __construct() | |
public function index() | ||
{ | ||
$title = 'Generals'; | ||
$this->setTitle('Settings - ' . $title); | ||
$this->setTitle("Settings - {$title}"); | ||
$this->addBreadcrumb($title); | ||
$this->setCurrentPage('foundation-settings-generals'); | ||
|
||
return $this->view('settings.index'); | ||
return $this->view('admin.settings.index'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\System; | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin\System; | ||
|
||
use Arcanesoft\Foundation\Http\Controllers\Controller as BaseController; | ||
use Arcanesoft\Foundation\Http\Controllers\Admin\Controller as BaseController; | ||
|
||
/** | ||
* Class Controller | ||
* | ||
* @package Arcanesoft\Foundation\Http\Controllers\System | ||
* @package Arcanesoft\Foundation\Http\Controllers\Admin\System | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
abstract class Controller extends BaseController | ||
|
@@ -21,6 +21,6 @@ public function __construct() | |
{ | ||
parent::__construct(); | ||
|
||
$this->addBreadcrumbRoute('System', 'foundation::system.information.index'); | ||
$this->addBreadcrumbRoute('System', 'admin::foundation.system.information.index'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\System; | ||
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin\System; | ||
|
||
/** | ||
* Class InformationController | ||
* | ||
* @package Arcanesoft\Foundation\Http\Controllers\System | ||
* @package Arcanesoft\Foundation\Http\Controllers\Admin\System | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class InformationController extends Controller | ||
|
@@ -20,7 +20,7 @@ public function __construct() | |
parent::__construct(); | ||
|
||
$this->setCurrentPage('foundation-system-information'); | ||
$this->addBreadcrumbRoute('Information', 'foundation::system.information.index'); | ||
$this->addBreadcrumbRoute('Information', 'admin::foundation.system.information.index'); | ||
} | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
|
@@ -31,6 +31,6 @@ public function index() | |
{ | ||
$this->setTitle('System information'); | ||
|
||
return $this->view('system.information.index'); | ||
return $this->view('admin.system.information.index'); | ||
} | ||
} |
Oops, something went wrong.