Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
app /
Http /
Requests /
Delete
Unzip
Name
Size
Permission
Date
Action
GoodsRequest.php
995
B
-rw-r--r--
2020-12-10 12:53
Request.php
136
B
-rw-r--r--
2020-12-10 12:53
Save
Rename
<?php namespace App\Http\Requests; use App\Http\Requests\Request; class GoodsRequest extends \Backpack\CRUD\app\Http\Requests\CrudRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { // only allow updates if the user is logged in return \Auth::check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ // 'name' => 'required|min:5|max:255' ]; } /** * Get the validation attributes that apply to the request. * * @return array */ public function attributes() { return [ // ]; } /** * Get the validation messages that apply to the request. * * @return array */ public function messages() { return [ // ]; } }