As the name suggests, this is a svelte version of the Laravel Breeze package. And I've recently implemented SSR support along with Ziggy already included.
Link to the Repo: https://github.com/tapan288/breeze-svelte
So go ahead and give it a try and let me know if there are any issues.
This also happens to be my first open-source package, so I'm really excited about this.
I may not be able to properly sync this with the official breeze version but I'll try my best. submitted by /u/tapan288
[link] [comments]
15 July, 2023
14 July, 2023
What is the Java 17 alternative for com.googlecode.robotframework-maven-plugin : robotframework-maven-plugin?
Programing Coderfunda
July 14, 2023
No comments
We have been using the following plugin:
com.googlecode.robotframework-maven-plugin
robotframework-maven-plugin
1.1.2
prepare-test
run
src/test/resources/robotframework/prepare
Prepare.Prepare-Tests.Prepare NREG
target
TAGS:${tags}
NOTAGS:${notags}
test-data/common.py
test-data/servers/${arc}.py
execute-test
run
test-data/nreg/tests
test-data/nreg
test-data/nreg/tests/tags.txt
TDD
true
We want the test project to be migrated to Java 17.
I tried using
org.robotframework
robotframework-maven-plugin
2.1.0
But, it throws an error:
[ERROR] Failed to execute goal org.robotframework:robotframework-maven-plugin:2.1.0:run (execute-test) on project tarc-robot: Invalid test data or command line options.
Some of the posts on internet suggests, the testCasesDirectory can only contain robot files and not HTML files.We have a lot of HTML files generated at the testCasesDirectory location.
Could someone suggests an alternative for com.googlecode.robotframework-maven-plugin: robotframework-maven-plugin which supports HTML files in testCasesDirectory or a way to make this plugin work with Java 17 ?
com.googlecode.robotframework-maven-plugin: robotframework-maven-plugin needs tools jar version 1.6, which is no longer present in Java 17 but was present in Java 8.
13 July, 2023
Laracon AU tickets on sale now!
Programing Coderfunda
July 13, 2023
No comments
12 July, 2023
Azure WordPress App Service Webp Not Working
Programing Coderfunda
July 12, 2023
No comments
I've created a new WordPress App Service. The version of WordPress is 6.2.2 and the version of php is 8.2.5 This version of WordPress supports webp and the mime types are configured. However when I try to add a webp image to the Media library I get an error:
This image cannot be processed by the web server. Convert it to JPEG or PNG before uploading.
After some searching, I found that web is not support by php install:
This seems to be a common problem, however I've been unable to find a solution. Is there any way to enable webp?
11 July, 2023
Three devs opinions on how to structure Laravel apps
Programing Coderfunda
July 11, 2023
No comments
Steve McDougall, Brent Roose, and Bobby Bouwmann joined in to discuss structuring Laravel applications.
The post Three devs opinions on how to structure Laravel apps appeared first on Laravel News.
Join the Laravel Newsletter to get Laravel articles like this directly in your inbox.
---
10 July, 2023
Weekly /r/Laravel Help Thread
Programing Coderfunda
July 10, 2023
No comments
Ask your Laravel help questions here. To improve your chances of getting an answer from the community, here are some tips:
* What steps have you taken so far?
* What have you tried from the documentation?
* Did you provide any error messages you are getting?
* Are you able to provide instructions to replicate the issue?
* Did you provide a code example?
* Please don't post a screenshot of your code. Use the code block in the Reddit text editor and ensure it's formatted correctly.
For more immediate support, you can ask in the official Laravel Discord.
Thanks and welcome to the /r/Laravel community! submitted by /u/AutoModerator
[link] [comments]
09 July, 2023
Hide mapbox and planet (or other tilemap) API from the frontend
Programing Coderfunda
July 09, 2023
No comments
I'm trying to hide the access token/api key from the client side. I'm using svelte (not sveltekit) with dotenv to store my keys.
.env
MAPBOX=someaccesstokenkeys
PLANET=someaccesstokenkeys
STYLE=stylefolder/styleid
The map worked just fine, no error. But when I check the source from the element inspector, the keys are still not hidden.
Are there any alternatives? or I have to redo this in sveltekit?
EDIT:
I've tried svelteKit, put my secretkey on .env, and import from page.server.js. From there, I return the data (I don't know any way other than this) and I assume this also expose the secretkey on client-side.
+page.server.js
import { MAPBOX, PLANET, STYLE } from '$env/static/private'
export async function load() {
// this will expose to client-side
return {
mapbox: MAPBOX,
planet: PLANET,
styleid: STYLE
}
}
Are there anyway to hide it from the client-side?

