my changes
This commit is contained in:
parent
28301e4312
commit
8dc1f1b048
263 changed files with 36882 additions and 4453 deletions
25
app/Http/Controllers/StaticPageController.php
Normal file
25
app/Http/Controllers/StaticPageController.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class StaticPageController extends Controller
|
||||
{
|
||||
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function imprint()
|
||||
{
|
||||
////$books = Book::available()->orderByTitle()->lists('title', 'id');
|
||||
//$persons = Person::active()->orderByName()->pluck('last_name', 'id');
|
||||
////$categories = Category::lists('category', 'id');
|
||||
//$categories = Project::get();
|
||||
|
||||
//return view('rdr.borrow.borrow', compact('persons', 'categories'));
|
||||
}
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue