mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
6c1b952111
* Validation rules for expenses * Tests * Tests
32 lines
600 B
PHP
32 lines
600 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\ClientPortal;
|
|
|
|
use App\Http\Requests\Request;
|
|
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 [
|
|
//
|
|
];
|
|
}
|
|
}
|