Try this sheet if you have a non-stop habit of over budgeting or over spending... This will help you put your finances within your limits.. The wise Socratis once said "An unexamined life is not worth living"
Hello NL Business minds.. This Spreadsheet developed with Microsoft Excel allows you to plan your finances by specifying your expectant and available income vs your budgeted and actual expenses. It helps you visualize when you are over-budgeting, over-spending so as to maintain a positive balance.
Can be used by individuals for personal finance management Also by businesses for business finance budgeting, management, etc
For those asking about stack, this is a developers network, we accept all stacks. Reach out to me, get accepted into our developers pool and start working on projects available for your stack.
We are looking for freelance backend Web / APIs developers, frontend web developers, or fullstack web developers to join our developers network, If you are within this category, message me on WhatsApp using the contact details on the signature.
My name is Jimoh, head of the EWS Technical team. If you are into mobile app development or game development, send me an email or message on WhatsApp using the contact details on the signature.
If you are not using Javascript or front end technology to do this, in Laravel php, you should have your categories table, users table and category_followers table where you include the user id and category id as foreign keys to help you track which user is following which category then you can use this to show or hide topics for logged in users based on their category followings
Tribers: i have created category table now what I want to do is allow user to follow categories before they can see any topic under the category
Welcome to the thread. If I understood correctly, you have a list of various chat conversations and you want to be able to open each conversation and then read through it and chat further if you want.
If it is this you want, you can achieve it with laravel,PHP. Each conversation has its own Id. Clicking that conversation will look for the id referenced in child tables holding the chat messages along with the sender and receiver ids. So basically in your show method, you can use the conversation id to get the chats in the chat table and then loop over them in the laravel blade front end.
You can also use javascript if you are dynamically loading conversations in the frontend, then would need to send the id via a HTTP post or get call / axios in your javascript to the Laravel controller. You can research more how to do this
JFOD: Well ,I just started learning laravel. To keep the thread alive
what do you think about posting small task, tips etc.
I am currently working on a project (don't have na end goal, just adding features one by one).
So far , I've added File upload (image , during registration)
Login/Registration + Auth + Validation
Delete button (yet to fully implement this , another user can delete someone else's profile ). I don't think that should be hard to fix
I'll probably just make the delete button to only show when the owner is viewing the profile.
I've paused it due to some other engagement and electricity issues.
I was trying to implement the chat feature.
Now, the issue I had
How to display the chat of the message that was clicked. One can't do that with php/laravel (I stand to be corrected)
I used JavaScript to detect which message was clicked. The problem I had/have is how to send the id of the message to the backend , so that I can retrieve the messages with the same sender and receiver id.
There are packages on github that can help you achieve the same objective. One advantage of separating the views table from your posts table is you don't want to be updating the views column on the posts table each time your post is being viewed and also with a separate table you can log additional information like visitors ip, device, browser, etc
EWSTechSupport: Sorry couldn't find the video I was looking for. Check my snippet below to understand Image 1 shows a simple migration table for blog posts Image 2 shows a simple migration table for blog post views Image 3 shows the blog post and blog post views relationship in the model (one to many) Image 4 shows the blog post views and blog post relationship in the inverse model (many to one)
After u have setup your models and relationship, In your Blog Posts controller Show method you can store a new count record for the post_views table so that a new record is created each time the post is being viewed. To do that inside the show method we can say
Sorry couldn't find the video I was looking for. Check my snippet below to understand Image 1 shows a simple migration table for blog posts Image 2 shows a simple migration table for blog post views Image 3 shows the blog post and blog post views relationship in the model (one to many) Image 4 shows the blog post views and blog post relationship in the inverse model (many to one)
After u have setup your models and relationship, In your Blog Posts controller Show method you can store a new count record for the post_views table so that a new record is created each time the post is being viewed. To do that inside the show method we can say
Tribers: how can I add post view count in my laravel 8 I'm using breeze
If you have a posts table, and you are looking at having detailed statistics about post views, you might need to setup a new table for post_views. Then reference the posts table id there. You may wish to track IP address of the viewer, and other information. Your question is a bit broad. If you need detailed help, I will point you to a video to watch