I'm trying to figure out how to get laravel-mix to convert ES6 javascript code into javascript code Internet Explorer 11 can use. I've setup a brand new laravel
I have a little problem when I want to test an array in my unit test. I want to test both structure and type of keys, but I don't know how to process it (I trie
I got this error when i tried to connect to my database: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) (SQL: select act
I have a multilingual laravel application. My url structure like that: https://example.com/en/paths https://example.com/es/paths I installed wordpress in /publi
I am trying to submit a contact form using laravel livewire like: public $name; public $email; public $phone; public $message; public function submitForm() {
I get a problem. I already read a lot of reference but still get error. Access to font at 'http://192.168.0.1/fonts/fontawesome-webfont.woff2?v=4.7.0' from ori
As Product model has many to many relations with Category (using ProductCategory model). I try to add an additive condition in the request. $productsWithActiveC
Using Paypal for payment it is working fine when I hit html form from a browser then It redirect's me to Paypal page for payment but on other side when I try to
So I have a many-to-many relationship between attention and services/procedures. A patient has many attentions, and attention belongs to a patient. The issue co
i need to delete a database table using laravel artisan command . not like this command php artisan migrate:rollback --step=5 i need to create like this route o
I have the following type of test for most models across my application: * @test */ public function an_authorised_user_can_delete_a_contact()
I have a big array like this: "twitter_link" => "http://twitter.com" "twitter_text" => "text" "youtube_link" => "" "youtube_text" => "" "snapchat_li
Using the blog scenario, I have a Post and an Author model. There is a many-to-many relationship with additional attributes on the relationship. In the applic
i have an file encoded in base64 and when i decode it and dump with dd() in laravel and it shows the file name and type so i was wondering where laravel stores
Is that possible to run this job UpdateRateZone globally wheneven Consignment Model gets updated anywhere in the system? One method is to use Observer but obser
$markerResult = Accommodation::with('images') ->whereRaw($lat <= (`lat`+(0.00898315284 * $radius))) ->whereRaw($lat >= (`lat`-(0.00898315284
I'm using Laravel framework. I want to change the default code style format from this: return [ 'name' => 'required|min:4|string', '
I have the following code in a Livewire Component <x-input.color wire:model="foo.name" wire-test="foo.name" /> So I am trying to use a Blade Comp
when i run the following query, results are listed multiple. there are 3 records in the table but it lists 5 $adverts = Advert::where("category_id", $category-&
How to Get the start_date end_date of month, week or day of closed_at date in a filter. i want to fetch start_date an end_date of closed_at The two dates specif