%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/workeasy-api/app/Http/Requests/Candidates/
Upload File :
Create Path :
Current File : /var/www/html/workeasy-api/app/Http/Requests/Candidates/AttachCandidateToInterviewRequest.php

<?php
/**
 * Created by PhpStorm.
 * User: User
 * Date: 1/29/2018
 * Time: 10:37 AM
 */

namespace Workeasy\Http\Requests\Candidates;

use Workeasy\Http\Requests\BaseRequest;

class AttachCandidateToInterviewRequest extends BaseRequest
{
    public function authorize()
    {
        return true;
    }

    public function rules()
    {
        return [
            'candidate_id' => 'required|integer|exists:candidates,id',
            'offer_id'     => 'required|integer|exists:offers,id',
        ];
    }
}

Zerion Mini Shell 1.0