Skip to content

How to add a link to route to another page in laravel

I have a view page which i need to add a link to redirect the user to a booking page. I’m not so familiar with PHP so any guides would be helpful. This is the table i have, and i need to add a link next to the of Available to redirect to another page called “quickbookingmodal.blade.php”. Thi…

Convert VB.NET Encrypt/Decript old code to PHP 5.3

I am trying to convert VB.NET Encrypt/Decrypt to PHP. The issue is we can not update the PHP version and the server supports only PHP5.3 VB.NET Sample Output Link http://www.tattoogenda.com/LoginTest….

is_page() function not displaying content to specific page ID’s

Im trying to simply just output some HTML onto these 3 specific page-ids that I am referring too in the code below. Does anyone have any ideas as to why this php isn’t working? (its at the bottom of my functions.php file in the child theme. Any help would be appreciated as to why this ‘test conten…

Custom validation not calling the passes() function

I am trying to make a validation that will check whether at least one item is provided in an array following the steps in Custom Validation Rules Routes.php ValidateArrayElementRule.php ExamPaperQuestionsController.php In my test file I have ExamPaperQuestionStoreRequest.php The test is failing Expected statu…

Codeigniter Multi Save Upload Path

I try to save the uploaded file in 2 paths, one inside a folder and contain the id and one outside the folder Here’s my code : When I run that code, the result is stucked Can you help me what’s wrong? Answer You set the upload_path key twice, which just overwrites itself. You’ll need to proc…