<?php
namespace App\Http\Controllers\Admin;
use Exception;
use Illuminate\Support\Arr;
use Illuminate\Http\Request;
use App\Models\Admin\Language;
use App\Http\Helpers\Response;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Auth;
use Illuminate\Http\RedirectResponse;
use App\Models\Admin\AppOnboardScreens;
use Illuminate\Support\Facades\Validator;
class AppOnboardScreensController extends Controller
{
/**
* Display The Onboard Screens Settings Page
*
* @return view
*/
public function onboardScreens() {
$page_title = "Onboard Screen";
$onboard_screens = AppOnboardScreens::orderByDesc('id')->get();
$languages = Language::get();
return view('admin.sections.app-settings.onboard-screens',compact(
'languages',
'page_title',
'onboard_screens',
));
}
/**
* Function for store new onboard screen record
* @param closer
*/
public function onboardScreenStore(Request $request) {
$section_data['title']['language'] = $this->contentValidate($request,['title' => 'required|string|max:255'],'onboard-screen-add');
if($section_data['title']['language'] instanceof RedirectResponse) {
return $section_data['title']['language'];
}
$validator = Validator::make($request->all(),[
'image' => 'required|image|mimes:png,jpg,webp,svg,jpeg',
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with('modal','onboard-screen-add');
}
$section_data['last_edit_by'] = Auth::user()->id;
if($request->hasFile('image')) {
try{
$image = get_files_from_fileholder($request,'image');
$upload_image = upload_files_from_path_static($image,'app-images',null,true,true);
$section_data['image'] = $upload_image;
}catch(Exception $e) {
return back()->withErrors($validator)->withInput()->with('modal','onboard-screen-add');
}
}
try{
AppOnboardScreens::create($section_data);
}catch(Exception $e) {
return back()->with(['error' => [__("Something went wrong! Please try again.")]]);
}
return back()->with(['success' => [__("Onboard Screen Added Successfully!")]]);
}
/**
* Function for update onboard screen status by AJUX request
*/
public function onboardScreenStatusUpdate(Request $request) {
$validator = Validator::make($request->all(),[
'data_target' => 'required|numeric',
'status' => 'required|numeric',
'input_name' => 'required|string',
]);
if ($validator->stopOnFirstFailure()->fails()) {
$error = ['error' => $validator->errors()];
return Response::error($error,null,400);
}
$validated = $validator->validate();
$target_id = $validated['data_target'];
$onboard_screen = AppOnboardScreens::find($target_id);
if(!$onboard_screen) {
$error = ['error' => ['Onboard screen not found!']];
return Response::error($error,null,404);
}
// Update Status to Database
try{
$onboard_screen->update([
'status' => ($onboard_screen->status) ? false : true,
]);
}catch(Exception $e) {
$error = ['error' => ['Something went worng! Please try again.']];
return Response::error($error,null,500);
}
$success = ['success' => [__('Onboard screen status updated successfully!')]];
return Response::success($success,null,200);
}
/**
* Function for update specific onboard screen information
*/
public function onboardScreenUpdate(Request $request) {
$target = $request->target ?? "";
$onboard_screen = AppOnboardScreens::find($target);
if(!$onboard_screen) {
return back()->withErrors($request->all())->withInput()->with(['warning' => ['Onboard screen not found!']]);
}
$section_data['title']['language'] = $this->contentValidate($request,['title' => 'required|string|max:120']);
$request->merge(['old_image' => $onboard_screen->image]);
$validator = Validator::make($request->all(),[
'target' => 'required|numeric',
'screen_image' => 'nullable|image|mimes:jpg,jpeg,png,svg,webp',
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with('modal','onboard-screen-edit');
}
$validated = $validator->validate();
$validated = Arr::except($validated,['target','screen_image']);
if($request->hasFile('screen_image')) {
try{
$image = get_files_from_fileholder($request,'screen_image');
$upload_image = upload_files_from_path_static($image,'app-images',$onboard_screen->image,true,true);
$section_data['image'] = $upload_image;
}catch(Exception $e) {
return back()->withErrors($validator)->withInput()->with(['error' => [__("Something went wrong! Please try again.")]]);
}
}
$validated = replace_array_key($validated,"screen_");
try{
$onboard_screen->update($section_data);
}catch(Exception $e) {
return back()->withErrors($validator)->withInput()->with(['error' => [__("Something went wrong! Please try again.")]]);
}
return back()->with(['success' => [__("Onboard screen information updated successfully!")]]);
}
/**
* Function for delete specific item form record
* @param \Illuminate\Http\Request $request
*/
public function onboardScreenDelete(Request $request) {
$validator = Validator::make($request->all(),[
'target' => 'required|integer|exists:app_onboard_screens,id',
]);
$validated = $validator->validate();
try{
AppOnboardScreens::find($validated['target'])->delete();
}catch(Exception $e){
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Screen deleted successfully!']]);
}
/**
* Method for validate request data and re-decorate language wise data
* @param object $request
* @param array $basic_field_name
* @return array $language_wise_data
*/
public function contentValidate($request,$basic_field_name,$modal = null) {
$languages = Language::get();
$current_local = get_default_language_code();
$validation_rules = [];
$language_wise_data = [];
foreach($request->all() as $input_name => $input_value) {
foreach($languages as $language) {
$input_name_check = explode("_",$input_name);
$input_lang_code = array_shift($input_name_check);
$input_name_check = implode("_",$input_name_check);
if($input_lang_code == $language['code']) {
if(array_key_exists($input_name_check,$basic_field_name)) {
$langCode = $language['code'];
if($current_local == $langCode) {
$validation_rules[$input_name] = $basic_field_name[$input_name_check];
}else {
$validation_rules[$input_name] = str_replace("required","nullable",$basic_field_name[$input_name_check]);
}
$language_wise_data[$langCode][$input_name_check] = $input_value;
}
break;
}
}
}
if($modal == null) {
$validated = Validator::make($request->all(),$validation_rules)->validate();
}else {
$validator = Validator::make($request->all(),$validation_rules);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with("modal",$modal);
}
$validated = $validator->validate();
}
return $language_wise_data;
}
}
At NFC Pay, your privacy is of utmost importance to us. This Privacy Policy outlines how we collect, use, share, and protect your personal information when you use our services, including our website and mobile applications.
1. Information We Collect
2. How We Use Your Information
We use the information we collect for the following purposes:
3. Sharing Your Information
We may share your personal information in the following circumstances:
4. Security of Your Information
We take the security of your personal information seriously and implement a variety of security measures, including encryption, secure servers, and access controls, to protect your data from unauthorized access, disclosure, alteration, or destruction. However, no method of transmission over the internet or electronic storage is completely secure, and we cannot guarantee its absolute security.
5. Your Privacy Rights
Depending on your location, you may have certain rights regarding your personal information, such as:
6. Third-Party Links
Our services may contain links to third-party websites or services. We are not responsible for the privacy practices or the content of these third-party sites. We encourage you to review the privacy policies of those third parties.
7. Children’s Privacy
Our services are not intended for individuals under the age of 13. We do not knowingly collect personal information from children under 13. If we become aware that we have collected personal information from a child under 13, we will take steps to delete that information.
8. Changes to This Privacy Policy
We may update this Privacy Policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. We will notify you of any significant changes by posting the new Privacy Policy on our website and updating the effective date.
9. Contact Us
If you have any questions or concerns about this Privacy Policy or our data practices, please contact us at:
Email: support@nfcpay.com