<?php
namespace {{namespace}};

use TypeRocket\Http\Fields;

class {{fields}} extends Fields
{
    /**
     * Run On Import
     *
     * Validate and then redirect on failure with errors, immediately
     * when imported by the application container resolver.
     *
     * @var bool
     */
    protected $run = null;

    /**
     * Model Fillable Property Override
     *
     * @return array
     */
    protected function fillable() {
        return [];
    }

    /**
     * Validation Rules
     *
     * @return array
     */
    protected function rules() {
        return [];
    }

    /**
     * Custom Error Messages
     *
     * @return array
     */
    protected function messages() {
        return [];
    }
}