access changed for files in my new laptop on Kali

This commit is contained in:
Mahri Ilmedova 2022-08-05 12:01:17 +05:00
parent 6054438d59
commit d3e513b9bf
4527 changed files with 10 additions and 4 deletions

0
.editorconfig Normal file → Executable file
View File

0
.env.example Normal file → Executable file
View File

0
.gitattributes vendored Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
.styleci.yml Normal file → Executable file
View File

0
CRUD-5.zip Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
app/AccountTypes/AccountTypesService.php Normal file → Executable file
View File

0
app/AccountTypes/BusinessAccount.php Normal file → Executable file
View File

0
app/AccountTypes/CompanyAccount.php Normal file → Executable file
View File

0
app/Console/Kernel.php Normal file → Executable file
View File

0
app/Exceptions/Handler.php Normal file → Executable file
View File

3
app/Http/Controllers/API/AccountController.php Normal file → Executable file
View File

@ -34,8 +34,6 @@ public function account(Request $request){
$account = Account::with('profile')->find($request->user()->account_id);
//return $account;
if(!empty($account)){
return AccountResource::make($account);
}
@ -55,5 +53,6 @@ public function storeBankAccount(BankAccountRequest $request){
public function storeProfile(){
}
}

0
app/Http/Controllers/API/AuthController.php Normal file → Executable file
View File

0
app/Http/Controllers/API/ResourceController.php Normal file → Executable file
View File

0
app/Http/Controllers/API/TicketController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/AccountCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/AnswerCrudController.php Normal file → Executable file
View File

View File

View File

0
app/Http/Controllers/Admin/BusinessCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/CategoryCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/ClientCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/CompanyCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/CountryCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/DocumentCrudController.php Normal file → Executable file
View File

View File

View File

View File

0
app/Http/Controllers/Admin/MessageCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/QuestionCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/StatusCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/TicketCrudController.php Normal file → Executable file
View File

0
app/Http/Controllers/Controller.php Normal file → Executable file
View File

0
app/Http/Kernel.php Normal file → Executable file
View File

0
app/Http/Middleware/Authenticate.php Normal file → Executable file
View File

0
app/Http/Middleware/CheckIfAdmin.php Normal file → Executable file
View File

0
app/Http/Middleware/ClientUserProvider.php Normal file → Executable file
View File

0
app/Http/Middleware/EncryptCookies.php Normal file → Executable file
View File

0
app/Http/Middleware/Localization.php Normal file → Executable file
View File

View File

0
app/Http/Middleware/RedirectIfAuthenticated.php Normal file → Executable file
View File

0
app/Http/Middleware/TrimStrings.php Normal file → Executable file
View File

0
app/Http/Middleware/TrustHosts.php Normal file → Executable file
View File

0
app/Http/Middleware/TrustProxies.php Normal file → Executable file
View File

0
app/Http/Middleware/VerifyCsrfToken.php Normal file → Executable file
View File

0
app/Http/Requests/API/AccountRequest.php Normal file → Executable file
View File

0
app/Http/Requests/API/ClientRequest.php Normal file → Executable file
View File

0
app/Http/Requests/API/LoginRequest.php Normal file → Executable file
View File

0
app/Http/Requests/API/MessageRequest.php Normal file → Executable file
View File

0
app/Http/Requests/API/RegisterRequest.php Normal file → Executable file
View File

0
app/Http/Requests/API/TicketRequest.php Normal file → Executable file
View File

0
app/Http/Requests/AccountRequest.php Normal file → Executable file
View File

0
app/Http/Requests/AnswerRequest.php Normal file → Executable file
View File

0
app/Http/Requests/ApplicationRequest.php Normal file → Executable file
View File

0
app/Http/Requests/AttachmentRequest.php Normal file → Executable file
View File

7
app/Http/Requests/BankAccountRequest.php Normal file → Executable file
View File

@ -24,7 +24,12 @@ public function authorize()
public function rules()
{
return [
//
'account_number' => 'required',
'account_date' => 'required',
'currency' => 'required',
'iban' => 'required',
'bank_name' => 'required',
'country' => 'required'
];
}
}

0
app/Http/Requests/BusinessRequest.php Normal file → Executable file
View File

0
app/Http/Requests/CategoryRequest.php Normal file → Executable file
View File

0
app/Http/Requests/ClientRequest.php Normal file → Executable file
View File

0
app/Http/Requests/CompanyRequest.php Normal file → Executable file
View File

4
app/Http/Requests/ContactsRequest.php Normal file → Executable file
View File

@ -24,7 +24,9 @@ public function authorize()
public function rules()
{
return [
//
'address' => 'required',
'phone' => 'required',
'email' => 'required'
];
}
}

0
app/Http/Requests/CountryRequest.php Normal file → Executable file
View File

0
app/Http/Requests/DocumentRequest.php Normal file → Executable file
View File

0
app/Http/Requests/DocumentgroupCountryRequest.php Normal file → Executable file
View File

0
app/Http/Requests/DocumentgroupDocumentRequest.php Normal file → Executable file
View File

0
app/Http/Requests/DocumentgroupRequest.php Normal file → Executable file
View File

0
app/Http/Requests/MessageRequest.php Normal file → Executable file
View File

0
app/Http/Requests/QuestionRequest.php Normal file → Executable file
View File

0
app/Http/Requests/StatusRequest.php Normal file → Executable file
View File

0
app/Http/Requests/TicketRequest.php Normal file → Executable file
View File

0
app/Http/Resources/AccountResource.php Normal file → Executable file
View File

0
app/Http/Resources/BusinessProfileResource.php Normal file → Executable file
View File

0
app/Http/Resources/CategoryResource.php Normal file → Executable file
View File

0
app/Http/Resources/ClientResource.php Normal file → Executable file
View File

0
app/Http/Resources/CompanyProfileResource.php Normal file → Executable file
View File

0
app/Http/Resources/CountryResource.php Normal file → Executable file
View File

0
app/Http/Resources/MessageResource.php Normal file → Executable file
View File

0
app/Http/Resources/TicketResource.php Normal file → Executable file
View File

0
app/Mail/EmailVerification.php Normal file → Executable file
View File

0
app/Mail/ResetPassword.php Normal file → Executable file
View File

0
app/Models/Account.php Normal file → Executable file
View File

0
app/Models/Answer.php Normal file → Executable file
View File

0
app/Models/Application.php Normal file → Executable file
View File

0
app/Models/Attachment.php Normal file → Executable file
View File

0
app/Models/Business.php Normal file → Executable file
View File

0
app/Models/Category.php Normal file → Executable file
View File

0
app/Models/Client.php Normal file → Executable file
View File

0
app/Models/Company.php Normal file → Executable file
View File

0
app/Models/Country.php Normal file → Executable file
View File

0
app/Models/Document.php Normal file → Executable file
View File

0
app/Models/Documentgroup.php Normal file → Executable file
View File

0
app/Models/DocumentgroupCountry.php Normal file → Executable file
View File

0
app/Models/DocumentgroupDocument.php Normal file → Executable file
View File

0
app/Models/Message.php Normal file → Executable file
View File

0
app/Models/Question.php Normal file → Executable file
View File

0
app/Models/Status.php Normal file → Executable file
View File

0
app/Models/Ticket.php Normal file → Executable file
View File

0
app/Models/User.php Normal file → Executable file
View File

0
app/Providers/AppServiceProvider.php Normal file → Executable file
View File

Some files were not shown because too many files have changed in this diff Show More