process mining payments
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\MoonRental;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use Carbon\Carbon;
|
||||
use Log;
|
||||
|
||||
class MoonRentalAdminController extends Controller
|
||||
{
|
||||
//Constructor
|
||||
public function __construct() {
|
||||
$this->middleware('role:Admin');
|
||||
$this->middleware('permission:moon.rental.manager');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display rental requests
|
||||
*/
|
||||
public function displayRentalRequests() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Create monthly moon rental
|
||||
*/
|
||||
public function storeRentalRequest() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete / remove monthly moon rental
|
||||
*/
|
||||
public function updateRentalRequest() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Display current monthly moon rentals
|
||||
*/
|
||||
public function displayCurrentRentals() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
44
app/Http/Controllers/MoonRental/MoonRentalController.php
Normal file
44
app/Http/Controllers/MoonRental/MoonRentalController.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\MoonRental;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use Carbon\Carbon;
|
||||
use Log;
|
||||
|
||||
class MoonRentalController extends Controller
|
||||
{
|
||||
//Constructor
|
||||
public function __construct() {
|
||||
$this->middleware('role:user');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display all of the available moons for rental
|
||||
*/
|
||||
public function displayMoons() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Display form to request new moon structure be placed
|
||||
*/
|
||||
public function displayNewMoonRequestForm() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Display moon rental request form
|
||||
*/
|
||||
public function displayMoonRentalRequestForm() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Store moon rental from the request form
|
||||
*/
|
||||
public function storeMoonRentalRequest() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user