mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
28cc7d5e52
- Hide Create Payment Method if no gateways exist - Payment Screen, add $amount - Fix breadcrumbs
31 lines
569 B
PHP
31 lines
569 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\ClientPortal;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CreatePaymentMethodRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return auth()->user()->client->getCreditCardGateway() ? true : false;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|