AdvertisementRequest.php 924 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class AdvertisementRequest extends FormRequest
  5. {
  6. /**
  7. * Determine if the user is authorized to make this request.
  8. *
  9. * @return bool
  10. */
  11. public function authorize()
  12. {
  13. return true;
  14. }
  15. /**
  16. * Get the validation rules that apply to the request.
  17. *
  18. * @return array
  19. */
  20. public function rules()
  21. {
  22. return [
  23. //
  24. 'advertisement_position_slug' => 'required',
  25. 'name' => 'required',
  26. 'sort' => 'required',
  27. 'type' => 'required',
  28. 'surface' => 'required',
  29. 'detail' => '',
  30. 'pid' => '',
  31. 'extra' => '',
  32. 'area_id' => 'required',
  33. 'start_time' => 'required',
  34. 'end_time' => 'required',
  35. 'is_display' => 'required',
  36. ];
  37. }
  38. }