Category "laravel"

Laravel Livewire set is Removing Map Marker

I am using Laravel 8 with Livewire and am displaying a Mapbox map in my page. When I click on the map, I am getting the coordinates of the click and placing a m

Why can I upload files to Wasabi using S3 and Laravel, but trying to get returns file not found?

So I am using Wasabi for object storage in my Laravel API, but after I got the upload working, now I can't get the download to work. I am using this package: ht

how to make a orm query with a string

How to make a orm query with a string User class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable, SoftDeletes, HasRoles; public

nouislider with livewire how to get values

How can i get the values from nouislider in livewire? So i can compare the min and max price. I don't see how i can get the values. It has 2 handles a min and m

I am trying to migrate the table I have created but I keep getting an error that my database is unknown.I use XAMPP 3.3

SQLSTATE[HY000] [1049] Unknown database 'laravel' (SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations and ta

error (Call to a member function getClientOriginalName() on null )

class Products extends Controller { public function index() { $products = DB::table('product')->get(); return view("product", compact('pr

Adding basic data to database - Laravel 8 + ajax

My laravel framework version is on 8.83.12 I am trying to build a form that creates a database entry based on Vehicle data, Make, Model, Version.. etc. My Model

Laravel - How to have two datatables in one blade view

I am a laravel beginner. I currently have a project in progressing which need to have two data tables in one page. In my past project, I only know how to make j

i want to get Instagram profile total followers and following and post get this error 429 Too Many Requests on laravel

I want to get Instagram profile total followers and following and post get this error" 429 Too Many Requests on Laravel. I need for it to show my users profile

Using mysql in github workflow always leads to SQLSTATE[HY000] [1045] Access denied for user error

Im currently configuring a CI pipe for my laravel project via github actions. This is my build.yml file # GitHub Action for Laravel with MySQL and Redis name: A

Can i use my oauth 2.0 client id created in my laravel website for flutter app in simultaneously?

I have an online store that I built by Bagisto, which depends on the Laravel platform and I created my oauth 2.0 client id in https://console.cloud.google.com/

Delete Rows Older than 30 Days Using Laravel Eloquent ORM

I'm trying to delete the records from my database table that are older than 30 days. I haven't executed the code because I wanted to check if I'm doing it right

Laravel array value get to show one by one

My database My blade view But I want to have this My controller $profiles= Profile::where('id', $id)->get(); return view('artists.profile_edit',c

http to https and www to non-www not working correct with laravel 8 URI links

I searched a lot of about this topic to redirect all urls to https://my-domain I want delete the www and add https. I found a lot of answers this one work good

No alive nodes. All the 1 nodes seem to be down

I am trying to use Elasticsearch 8.1 using laravel. My elasticsearch instance is running at port 9200. https://localhost:9200 returns me { "name" : "node-1",

Laravel | Route not defined

I have a problem in my Route. I see this error: Route [utilizadores.editar] not defined The error occurs on the page when I try to update the data in my DB. M

How can I force a refresh in my spa website with vuejs - laravel

Hi I know that this had been spoken but I have tried everything and nothing works.. so I come here one more time to ask a final or a solution to the big problem

How to get top 5 tags of Category from posts Laravel

Hi I've 3 Modeles Post, Tag, and category , post belongs to many categories as well as tags. I want to fetch the top 5 tags of the posts for the given categori

Laravel 8: How to set default value of all enum values

I want to assign all default values for allowed_file_types column in products table which are all values of enum FileTypes. But now I have no way to do that. Ca

Illuminate\Foundation\Auth\User returning keyType: int

I am using the following trait to generate UUID's for my user model. I have setup a listener to the following event: Illuminate\Auth\Events\Login. This works wh